.text-return{
    color: white;
    font-size: 18px;
}

.link-return{
    color: rgb(0, 183, 255);
    text-decoration: none;
    font-size: 18px;
}

.link-return:hover {
    color: rgb(0, 150, 210);
    text-decoration: underline;
}

.text-muted{
    color: white;
    font-size: 20px;
    text-align: center;
    line-height: 1.6;
}

.card-title{
    color:#fd731e;
    font-size: 28px;
    font-weight: bold;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo-container .logo {
    max-width: 200px;
    height: auto;
}

.forgot-password-header {
    margin-bottom: 30px;
    text-align: center;
}

.forgot-password-header h2 {
    margin-bottom: 20px;
}

.forgot-password-header p {
    margin-bottom: 0;
}

.input-container {
    position: relative;
    width: 100%;
    margin: 30px 0;
}

.input-container .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8d8d8d;
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
}

.login-adm-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.login-adm-input:focus {
    outline: none;
    border-color: #fd731e;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(253, 115, 30, 0.1);
}

.login-adm-input::placeholder {
    color: #999;
}

.login-adm-button {
    width: 100%;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background-color: #fd731e;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-adm-button:hover {
    background-color: #e6651a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 115, 30, 0.4);
}

.form-group-email {
    margin: 30px 0;
}

.form-label {
    display: block;
    color: white;
    font-size: 16px;
    margin-bottom: 8px;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #fd731e;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(253, 115, 30, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.btn-icon {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background-color: #fd731e;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background-color: #e6651a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 115, 30, 0.4);
}

.form-footer {
    text-align: center;
}

.footer-link-container {
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.error-message {
    color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

/* Alert styling inside the login panel (Information box) */
.login-panel .alert-info h3 {
    color: #fd731e; /* same orange as card-title */
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px 0;
}

.login-panel .alert-info p {
    color: #ffffff; /* white paragraph text */
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Responsividade para tablets */
@media screen and (max-width: 768px) {
    .logo-container {
        margin-bottom: 30px;
    }

    .logo-container .logo {
        max-width: 180px;
    }

    .card-title {
        font-size: 24px;
    }

    .text-muted {
        font-size: 18px;
        line-height: 1.5;
    }

    .forgot-password-header {
        margin-bottom: 25px;
    }

    .input-container {
        margin: 25px 0;
    }

    .login-adm-input,
    .form-control {
        font-size: 15px;
        padding: 11px 13px 11px 42px;
    }

    .login-adm-button,
    .btn-icon {
        font-size: 16px;
        padding: 11px 20px;
    }

    .text-return,
    .link-return {
        font-size: 16px;
    }

    .footer-link-container {
        margin-top: 30px;
        padding-top: 15px;
    }
}

/* Responsividade para mobile */
@media screen and (max-width: 480px) {
    .login-panel {
        padding: 20px 15px !important;
        margin: 10px !important;
        width: calc(100% - 20px) !important;
        max-width: 100% !important;
    }

    .logo-container {
        margin-bottom: 25px;
    }

    .logo-container .logo {
        max-width: 150px;
    }

    .card-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .text-muted {
        font-size: 16px;
        line-height: 1.4;
        padding: 0 5px;
    }

    .forgot-password-header {
        margin-bottom: 20px;
    }

    .forgot-password-header h2 {
        margin-bottom: 15px;
    }

    .input-container {
        margin: 20px 0;
    }

    .input-container .icon {
        left: 12px;
        font-size: 16px;
    }

    .login-adm-input,
    .form-control {
        font-size: 14px;
        padding: 10px 12px 10px 38px;
    }

    .login-adm-button,
    .btn-icon {
        font-size: 15px;
        padding: 10px 18px;
        margin-top: 15px;
    }

    .text-return,
    .link-return {
        font-size: 14px;
    }

    .footer-link-container {
        margin-top: 25px;
        padding-top: 15px;
    }

    .form-group-email {
        margin: 20px 0;
    }

    .form-label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .error-message {
        padding: 12px;
        font-size: 14px;
    }
}

/* Responsividade para telas muito pequenas */
@media screen and (max-width: 360px) {
    .login-panel {
        padding: 15px 10px !important;
        margin: 5px !important;
    }

    .logo-container .logo {
        max-width: 130px;
    }

    .card-title {
        font-size: 20px;
    }

    .text-muted {
        font-size: 14px;
    }

    .login-adm-input,
    .form-control {
        font-size: 13px;
        padding: 9px 10px 9px 36px;
    }

    .input-container .icon {
        left: 10px;
        font-size: 14px;
    }

    .login-adm-button,
    .btn-icon {
        font-size: 14px;
        padding: 9px 16px;
    }

    .text-return,
    .link-return {
        font-size: 13px;
    }
}