/* body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 600px;
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
    border: 1px solid #e9ecef;
    max-width: 400px;
    width: 100%;
}

.logo-container {
    text-align: center;
    margin: 40px 0;
}

.logo-container img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.login-title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #495057;
    letter-spacing: -0.2px;
}

.login-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.5;
}

.login_wrap {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.heading_s1 h3 {
    color: #334155;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

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

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 16px 16px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #ffffff;
    color: #495057;
    font-weight: 400;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #fd7e14;
    box-shadow: 0 0 0 2px rgba(253, 126, 20, 0.1);
    outline: none;
    background-color: #ffffff;
}

.form-group input::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    color: #64748b;
    font-size: 14px;
}

.remember-checkbox {
    margin-right: 10px;
    accent-color: #7dd3fc;
}

.btn-fill-out {
    background-color: #fd7e14;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    width: auto;
    min-width: 120px;
    cursor: pointer;
    display: block;
    margin: 30px auto 0;
    text-align: center;
}

.btn-fill-out:hover {
    background-color: #e8690b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(253, 126, 20, 0.3);
}

.btn-fill-out:active {
    transform: translateY(0);
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.alert-danger {
    background-color: #fef2f2;
    border: 2px solid #fecaca;
    color: #dc2626;
}

.form-group {
    position: relative;
}

.form-group input:focus + .input-highlight {
    transform: scaleX(1);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #7dd3fc, #38bdf8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    body {
        padding: 16px;
    }
    
    .login_wrap {
        padding: 24px;
    }
    
    .logo-container img {
        max-width: 150px;
    }
    
    .login-title {
        font-size: 24px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="password"] {
        padding: 14px 16px;
    }
} */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.login-wrap {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 60px 50px;
}

.heading {
    text-align: center;
    margin-bottom: 30px;
}

.heading h3 {
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

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

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
    background-color: white;
}

.form-group input::placeholder {
    color: #999;
}

.remember-me {
    display: none;
}

.btn {
    width: 100%;
    padding: 15px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
}

.error-general {
    background-color: #fdf2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}