﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#login-page {
    font-family: 'Nunito', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.login-main {
    height: 100vh;
    overflow: hidden;
}

/* Info Panel */
.info-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}

.info-panel-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.illustration-wrapper {
    flex: 1;
    min-height: 200px;
}

.login-illustration {
    max-width: 400px;
    max-height: 300px;
}

.features-section {
    margin-top: auto;
    padding-top: 2rem;
    /*padding-bottom: 2rem;*/
}

.features-list {
    max-width: 100%;
}

.feature-check {
    font-weight: bold;
}

/* Login Panel */
.login-panel {
    height: 100%;
    overflow-y: auto;
}

.login-form-wrapper {
    max-width: 400px;
}

/* Brand Colors */
.bg-primary {
    background-color: #E85A10 !important;
}

/*.btn {
    background-color: #E85A10 !important;
}
*/
.btn:active {
    background-color: #E85A10 !important;
}

.btn-primary {
    background-color: #F97415;
    border-color: #F97415;
}

    .btn-primary:hover {
        background-color: #E85A10;
        border-color: #E85A10;
    }

    .btn-primary:active {
        background-color: #E85A10;
        border-color: #E85A10;
    }


.text-primary {
    color: #E85A10 !important;
}

/* Password Toggle */
.password-field-wrapper {
    position: relative;
}

.password-input {
    padding-right: 3rem;
}

.password-toggle {
    padding: 0;
    border: 0;
    background: transparent;
    text-decoration: none;
    margin-right: 10px;
}

    .password-toggle:hover {
        background: transparent;
    }

/* Icons */
.feather {
    width: 18px;
    height: 18px;
}

.error-icon {
    width: 16px;
    height: 16px;
}

/* Alert Styling */
.server-error,
.server-success {
    display: flex;
    align-items: center;
}

.server-error {
    background-color: red;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .server-error img {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }


.number-card {
    padding: 10px 25px !important;
/*    width: 200px;
    min-width: 200px;*/
    background-color: #E76527;
    border: none !important;
    border-radius: 10px !important;
}

.number-card div h1{
   color: white;
   font-size: 25px;
   font-weight: 700;
   margin-bottom: 0px !important;
}

    .number-card div p {
        color: #F9CEB8;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 0px !important;
    }
/*.login-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 252, 0.95));
    backdrop-filter: blur(10px);
}

.login-form-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
}*/
/* Responsive Design */
@media (max-width: 991.98px) {
    html, body, #login-page, .login-main {
        overflow-y: auto;
        overflow-x: hidden;
        height: auto;
    }

    .info-panel,
    .login-panel {
        height: auto;
        min-height: 50vh;
    }

    .info-panel-content {
        min-height: auto;
    }

    .illustration-wrapper {
        min-height: 150px;
    }

    .login-illustration {
        max-width: 300px;
        max-height: 200px;
    }

    .features-section {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .login-illustration {
        max-width: 250px;
        max-height: 150px;
    }
}
