@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

body {
    background-image: url(../images/sign.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 155px;
    margin: 0;
}

.logo img {
    height: 80px;
    width: 350px;
    object-fit: contain;
    color: white;
    margin-top: 40px;
}

.container {
    display: flex;
    justify-content: center;
}

.content p {
    text-align: center;
}

.title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 50px;
    color: white;
    margin: 0;
}

.description {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    color: white;
    font-style: italic;
    margin: 0;
}

form {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 420px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 4px;
    margin: 40px auto 50px;

}

.form-div {
    display: flex;
    flex-direction: column;
    color: #3A3A3A;
}

.form-div label {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 5px;
}

.form-div input {
    box-sizing: border-box;
    width: 300px;
    height: 35px;
    opacity: 0.66;
    border: 1px solid #A8A8A8;
    border-radius: 3px;
    margin-bottom: 10px;
    padding: 5px;
}

.signIn-btn {
    width: 150px;
    height: 40px;
    border: none;
    font-size: 20px;
    background: linear-gradient(83.99deg, rgba(7, 47, 1, 0.82) -2.75%, rgba(70, 255, 43, 0.82) 109.25%);
    border-radius: 2px;
    color: white;
    margin-top: 20px;
}

.icon {
    margin-top: -40px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    background-color: white;
    align-self: center;
    position: relative;
}

.icon img {
    display: flex;
    justify-content: center;
    align-self: center;
    position: absolute;
    width: 60px;
    right: 25px;
    top: 20px;
}
.msg{
    font-family: Poppins;
    color: red;
    font-weight: 700;
    height: 30px;
}
@media(max-width: 800px) {
    nav {
        display: flex;
        justify-content: center;
    }
    .container{
        padding: 50px 0 80px;
    }
    form {
        width: 100%;
        padding: 10px 0 40px;
        position: absolute;
        left: 0;
        margin-top: 80px;
    }

    .description {
        margin-bottom: 20px;
    }
}

@media(max-width: 500px) {
    

    .description {
        font-size: 12px;
    }
}