@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat",sans-serif;
}

body{
    background-color: rgb(0, 105, 204);
    width: 100%;
    height: 100%;
    background-image: url(images/login_image_1280.png);
    background-size: 100%;
    background-repeat: no-repeat;
   
}

header{
    padding: 11px 64px 10px;
    width: 100%;
    height: 80px;
    place-content: center;
    background-image: linear-gradient(0deg, transparent 5%, #232452a6);
}
.nav{
    display: flex;
    justify-content: space-between;
    /* gap: 10px; */

    img{
        width: 210px;
        height: 38px;
    }

    button{
        background-color: transparent;
        padding: 5px 15px;
        border: 1px solid white;
        border-radius:5px ;
        transition: all 0.1s ease;
        cursor: pointer;
    }
    button:hover{
        background: rgba(255, 255, 255, 0.078);
    }
    span{
        color: white;
        font-weight: 700;
        font-size: 0.9rem;
        height: 28px;
        place-content: center;
        display:inline-block;
        width: 200px;
    }
}
#content{
    padding: 5px 64px 10px;
    width: 100%;
    height: 140vh;
    
}
#content h1{
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    width: 50%;
    margin: 15px 0 38px;
    line-height: 1;
    letter-spacing: -0.15rem;

    span{
        color: rgb(255, 238, 0);
    }
}
#content > p{
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 27px;
}
#content .alert{
    width: 350px;
}
#content form{
    width: 350px;
}
#content div input{
    padding: 17px 15px;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 4px;
    outline: none;
    border: none;
    font-size: 18px;
}
#content div input::placeholder{
    color: rgb(174, 173, 173);
}
#content form button{
    background: rgb(255, 238, 0);
    padding: 11px 16px;
    width: 350px;
    border-radius: 4px;
    transition: all 0.1s ease;
    border: none;
    box-shadow: 0px 3px 1px 0px rgba(0,0,0,0.2);
    cursor: pointer;

    span{
        font-size: 14px;
        font-weight: 700;
        color: #000000e8;

    }
}
#content form button:hover{
    background: rgb(187, 187, 5);
}
#content form p{
    font-size: 14px;
    text-align: center;
    width: 350px;
    color: rgb(255, 238, 0);
    margin: 27px 0 27px;
    font-weight: 700;
}
#div2{
    width: 400px;
}
#div2 h2{
    font-size: 16px;
    font-weight:normal;
    color: white;
    margin-bottom: 16px;

    a{
        color: rgb(255, 238, 0);
    }
}
#div2 p:nth-of-type(1){
    color: white;
    font-weight: 700;
    font-size: 13px;
}
#div2 ul{
    margin: 13px 0 13px;
    padding-left: 20px;
    color: white;
    list-style-type: disc;
    font-size: 13px;
    

    li a{
        color:rgb(255, 238, 0);
        font-weight: 600;
    }
}
#div2 p:nth-of-type(2){
    color: white;
    font-size: 13px;
}
@media screen and (max-width: 960px){
    body{
        background-color: rgb(0, 105, 204);
        /* background-color: rgb(204, 0, 99);  */
        width: 100%;
        height: 100%;
        background-image: url(images/login_image_600.png);
        background-size: 100%;
        background-repeat: no-repeat;
       
    }
    header{
        padding: 11px 64px 10px;
        width: 100%;
        height: 80px;
        place-content: center;
        background-image: linear-gradient(0deg, transparent 5%, #232452a6);
    }
    .nav{
        display: flex;
        justify-content: space-between;
        /* gap: 10px; */
    
        img{
            width: 210px;
            height: 38px;
        }
    
        button{
            background-color: transparent;
            padding: 5px 15px;
            border: 1px solid white;
            border-radius:5px ;
            transition: all 0.1s ease;
            cursor: pointer;
        }
        button:hover{
            background: rgba(255, 255, 255, 0.078);
        }
        span{
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            height: 28px;
            place-content: center;
            display:inline-block;
            width: 168px;
        }
    }
    #content{
        padding: 5px 64px 10px;
        width: 100%;
        height: 140vh;
        
    }
    #content h1{
        font-size: 2rem;
        font-weight: 800;
        color: white;
        width: 50%;
        margin: 15px 0 21px;
        line-height: 1;
        letter-spacing: -0.15rem;
    
        span{
            color: rgb(255, 238, 0);
        }
    }
    #content > p{
        color: white;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 28px;
    }
    #content form{
        width: 320px;
    }
    #content div input{
        padding: 17px 15px;
        width: 100%;
        margin-bottom: 25px;
        border-radius: 4px;
        outline: none;
        border: none;
        font-size: 18px;
    }
    #content div input::placeholder{
        color: rgb(174, 173, 173);
    }
    #content form button{
        background: rgb(255, 238, 0);
        padding: 11px 16px;
        width: 320px;
        border-radius: 4px;
        transition: all 0.1s ease;
        border: none;
        box-shadow: 0px 3px 1px 0px rgba(0,0,0,0.2);
        cursor: pointer;
    
        span{
            font-size: 14px;
            font-weight: 700;
            color: #000000e8;
    
        }
    }
    #content form button:hover{
        background: rgb(187, 187, 5);
    }
    #content form p{
        font-size: 14px;
        text-align: center;
        width: 320px;
        color: rgb(255, 238, 0);
        margin: 27px 0 27px;
        font-weight: 700;
    }
    #div2{
        width: 315px;
    }
    #div2 h2{
        font-size: 16px;
        font-weight:normal;
        color: white;
        margin-bottom: 16px;
    
        a{
            color: rgb(255, 238, 0);
        }
    }
    #div2 p:nth-of-type(1){
        color: white;
        font-weight: 700;
        font-size: 13px;
    }
    #div2 ul{
        margin: 13px 0 13px;
        padding-left: 20px;
        color: white;
        list-style-type: disc;
        font-size: 13px;
        
    
        li a{
            color:rgb(255, 238, 0);
            font-weight: 700;
        }
    }
    #div2 p:nth-of-type(2){
        color: white;
        font-size: 13px;
    }
}
