*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: #f0f2f5;
}

.container{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 20px;
}

.about{
    width: 500px;
}

.about h1{
    color: #1877f2;
    font-size: 60px;
    margin-bottom: 10px;
}

.about p{
    font-size: 24px;
}

.form-card{
    width: 380px;
}

form{
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

form input{
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #dddfe2;
    font-size: 16px;
}

form input:focus{
    outline: none;
    border: 1px solid #1877f2;
}

.login-btn{
    background-color: #1877f2;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.login-btn:hover{
    background-color: #166fe5;
}

.forgot{
    text-align: center;
    margin: 15px 0;
    text-decoration: none;
    color: #1877f2;
    font-size: 14px;
}

hr{
    margin: 15px 0;
    border: none;
    border-top: 1px solid #dddfe2;
}

.create-btn{
    background-color: #42b72a;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.create-btn:hover{
    background-color: #36a420;
}

.bottom-text{
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}


@media (max-width: 1024px){
    .container{
        gap: 40px;
    }

    .about h1{
        font-size: 48px;
    }

    .about p{
        font-size: 20px;
    }
}
@media (max-width: 768px){

    .container{
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about{
        width: 100%;
    }

    .about h1{
        font-size: 40px;
    }

    .about p{
        font-size: 18px;
    }

    .form-card{
        width: 100%;
        max-width: 400px;
    }
}