/* Main Layout */
.auth-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f5f5f5;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-section img {
    margin-bottom: 1rem;
}

.logo-section h2 {
    margin-bottom: 0.5rem;
    color: #333;
}

.address {
    color: #666;
    font-size: 0.9rem;
}

/* Form Styling */
.login-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.input-group-icon {
    position: relative;
    width: 100%;
}

.input-group-addon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    z-index: 2;
}

.form-control {
    width: 100%;
    padding: 10px 15px 10px 45px;
    height: 45px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Login Options */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem auto;
    max-width: 320px;
}

.remember-me label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.forgot-password a {
    color: #666;
    text-decoration: none;
}

/* Button */
.btn-primary {
    height: 45px;
    background: #007bff;
    border: none;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0056b3;
}

/* Footer */
.footer-text {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Button styling update */
#btn_submit {
    max-width: 320px;
    margin: 0 auto;
    display: block;
} 