﻿/* ===============================
  SignIn Page Styles
   =============================== */

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 150px;
}

    .language-selector select {
        padding-left: 32px;
        background-repeat: no-repeat;
        background-position: 8px center;
        background-size: 20px 20px;
        font-size: 0.7rem;
    }


.login-container {
    flex: 1;
    min-height: calc(100vh - 56px); /* 56px es la altura del footer */
    width: 100vw;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #005840, #007a5e);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}



.login-card {
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    padding: 0;
    color: #333333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

    .login-card h2 {
        color: #005840;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .login-card small {
        color: #007a5e;
    }

.signin-header {
    background-color: #b3e6d0;
    border-bottom: 1px solid #ccc;
    box-shadow: inset 0 -2px 4px -2px rgba(0, 0, 0, 0.15);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    width: 100%;
}


/*Overrides Bootstrap
*/.btn-primary {
    background-color: #005840;
    border-color: #005840;
}

    .btn-primary:hover {
        background-color: #007a5e;
        border-color: #007a5e;
    }

.alert-danger {
    background-color: #ff4d4d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
}