/* ===========================================
   SSU MPKBM - Login Page Styles (Green Theme)
   =========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #e8e8e8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
.login-header {
    background: linear-gradient(135deg, #5cb85c 0%, #4cae4c 100%);
    padding: 40px 30px;
    text-align: center;
}

.login-header h1 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

/* Body */
.login-body {
    padding: 40px 30px;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 30px;
    background: #f0f0f0;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #999;
}

.form-control:focus {
    background: #e8e8e8;
    box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.2);
}

/* Forgot Link */
.forgot-link {
    text-align: right;
    margin-bottom: 25px;
}

.forgot-link a {
    color: #5cb85c;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link a:hover {
    color: #449d44;
}

/* Sign In Button */
.btn-signin {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #5cb85c 0%, #4cae4c 100%);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-signin:hover {
    background: linear-gradient(135deg, #4cae4c 0%, #449d44 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(92, 184, 92, 0.4);
}

.btn-signin:active {
    transform: translateY(0);
}

/* Sign Up Link */
.signup-link {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.signup-link p {
    color: #999;
    font-size: 13px;
    margin-bottom: 5px;
}

.signup-link a {
    color: #5cb85c;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: #449d44;
}

/* Responsive */
@media (max-width: 480px) {
    .login-box {
        border-radius: 15px;
    }

    .login-header {
        padding: 30px 20px;
    }

    .login-header h1 {
        font-size: 24px;
    }

    .login-body {
        padding: 30px 20px;
    }
}
