.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4b5563;
}

input[type="text"]{
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    background-color: #f9fafb;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    border-color: #6366f1;
}

@media (max-width: 480px) {
    .login-container {
        padding: 20px;
    }

    h2 {
        font-size: 20px;
    }
}

.main-content{
    margin-inline: 30%;
}