/* VIP-Systems Intranet Login Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Logo space */
.logo-space {
    height: 100px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#title h1 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

#login-container {
    max-width: 400px;
    width: 90%;
    padding: 2rem 2.5rem;
}

#login-container h1 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

label {
    color: #555;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid black;
    border-radius: 0;
    font-size: 1rem;
    background: transparent !important;
    background-color: transparent !important;
}

input[type="text"]:focus,
input[type="password"]:focus {
    outline: none;
    border-bottom: 1px solid black;
    background: transparent !important;
    background-color: transparent !important;
}

/* Remove autofill background */
input[type="text"]:-webkit-autofill,
input[type="password"]:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: black !important;
    background: transparent !important;
    background-color: transparent !important;
}

input[type="text"]:-webkit-autofill:focus,
input[type="password"]:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: black !important;
}

button[type="submit"] {
    background: black;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive design */
@media (max-width: 480px) {
    #title h1 {
        font-size: 2rem;
    }
    
    #login-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
    
    #login-container h1 {
        font-size: 1.5rem;
    }
}

 