@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background: url('../assets/company-photo.png') no-repeat center center/cover;
    padding: 1rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container-wrapper {
    max-width: 380px;
    width: 100%;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-radius: 1.25rem;
    overflow: hidden;
}

.login-button {
    background-color: #1E40AF;
    width: 100%;
}

.login-button:hover {
    background-color: #1D4ED8;
}

.input-field {
    border-radius: 0.5rem;
    border: 1px solid #D1D5DB;
    padding: 0.75rem 1rem;
    width: 100%;
}

.input-field:focus {
    border-color: #3B82F6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
    outline: none;
}

.remember-me-label {
    color: #4B5563;
}

/* Home Button CSS - If needed later */
.home-float {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: #1E40AF;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1000;
}

@media (max-width: 600px) {
    body {
        background-position: center;
        padding: 0.5rem;
    }
    .auth-container-wrapper {
        max-width: 100vw !important;
        min-height: auto;
        height: auto;
        border-radius: 1rem !important;
        margin: 1rem 0;
    }
    .auth-container-wrapper .py-12 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .auth-container-wrapper .px-6 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .auth-container-wrapper h1 {
        font-size: 1.4rem !important;
        margin-bottom: 0 !important;
    }
    .auth-container-wrapper .mb-8 {
        margin-bottom: 1rem !important;
    }
    .auth-container-wrapper form.space-y-5 > * + * {
        margin-top: 0.75rem !important;
    }
    .login-button {
        height: 44px;
        margin-top: 0.75rem !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .input-field {
        height: 42px;
        font-size: 16px !important;
        padding: 0.5rem 0.75rem !important;
    }
    .auth-container-wrapper label {
        margin-bottom: 0.1rem !important;
        font-size: 0.85rem !important;
    }
}

