* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #f3f3f3, #e9e9e9);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 450px;
    margin: 20px;
}

.login-box {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    color: #b29600; /* Subtle gold color */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

h1::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: #1a1a1a; /* Black underline */
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}


.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    font-size: 14px;
    color: #1a1a1a; /* Dark color for labels */
    margin-bottom: 5px;
    display: block;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #b29600; /* Gold border for input */
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #e6ac00; /* Brighter gold when focused */
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #b29600, #1a1a1a); /* Subtle gradient from gold to black */
    color: #ffffff; /* White text for contrast and readability */
    border: 1px solid #b29600; /* Subtle gold border */
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Subtle black shadow for depth */
    transition: background 0.4s, box-shadow 0.3s, transform 0.3s;
}

.login-btn:hover {
    background: linear-gradient(135deg, #e6ac00, #333333); /* Slightly lighter gold and darker grey on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.login-btn:active {
    transform: translateY(1px); /* Slight press-down effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25); /* Reduce shadow to indicate press */
}


.extra-links {
    margin-top: 15px;
}

.extra-links a {
    color: #b29600; /* Gold color for links */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    margin: 0 5px; /* Add some space between the links */
}

.extra-links a:hover {
    color: #e6ac00; /* Brighter gold on hover */
}

.extra-links span {
    color: #1a1a1a; /* Dark separator between links */
    font-size: 14px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .login-box {
        padding: 30px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    .input-group input, .login-btn {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 20px;
    }
    
    h1 {
        font-size: 18px;
    }
    
    .input-group input, .login-btn {
        padding: 8px;
        font-size: 12px;
    }
}
