/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    padding: 80px 60px;
    text-align: center;
}

.login-logo {
    margin-bottom: 50px;
}

.login-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.alert {
    padding: 12px 16px;
    margin-bottom: 24px;
    border-radius: 4px;
    font-size: 14px;
    text-align: left;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-error p {
    margin: 0;
}

.login-form {
    margin-bottom: 24px;
}

.form-field {
    margin-bottom: 24px;
    text-align: left;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.3px;
}

.form-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus {
    outline: none;
    border-color: #666666;
    box-shadow: 0 0 0 2px rgba(102, 102, 102, 0.1);
}

.btn-login {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 4px;
    background-color: #5050e8;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-login:hover {
    background-color: #3f40c7;
}

.btn-login:active {
    background-color: #2d2db0;
}

.login-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.signup-text {
    font-size: 13px;
    color: #666666;
    margin-bottom: 16px;
}

.signup-text a {
    color: #666666;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-text a:hover {
    color: #5050e8;
}

.create-link {
    font-weight: 600;
}

.create-account {
    display: block;
    font-size: 13px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.create-account:hover {
    color: #5050e8;
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-container {
        padding: 60px 30px;
        max-width: 100%;
    }

    .login-logo {
        margin-bottom: 40px;
    }

    .login-logo img {
        height: 50px;
    }

    .form-field {
        margin-bottom: 20px;
    }

    .form-field label {
        font-size: 12px;
    }

    .form-field input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-login {
        padding: 11px 14px;
        font-size: 14px;
    }

    .login-footer {
        margin-top: 20px;
        padding-top: 20px;
    }

    .signup-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .create-account {
        font-size: 12px;
    }
}

