/* assets/css/reset_password.css */

.reset-body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to top right, #394452, #242732);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.reset-container {
    background: linear-gradient(to top right, #394452, #242732);
    padding:  40px 40px 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.reset-title {
    font-size: 24px;
    font-weight: bold;
    color: #cacaca;
    margin-bottom: 20px;
}

.reset-container form {
    display: flex;
    flex-direction: column;
}

.reset-label {
    margin-top: 10px;
    font-weight: bold;
    color: #cacaca;
}

.reset-input {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.reset-submit {
    margin-top: 20px;
    padding: 12px;
    background-color: #21a13d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.reset-submit:hover {
    background-color: #146b27;
}

.reset-response {
    display: none;
    margin: 20px auto;
    padding: 20px;
    max-width: 600px;
    background: transparent;
    color: #cacaca;
    border-radius: 5px;
    text-align: center;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 12px;
    color: #888;
    text-align: center;
    padding: 10px 0;
    background: linear-gradient(to top right, #242732, #394452);
    box-sizing: border-box;
    z-index: 1000;
}

/* Container pentru logo-ul din pagina de resetare */
.reset-logo-center {
    text-align: center;
    margin-bottom: 20px;
}

.reset-logo {
    max-width: 120px;
    height: auto;
}

/* Back arrow pentru pagina de resetare */
.back-arrow-reset {
    display: inline-block;
    width: 30px;
    height: 30px;
    max-width: 30px;
    text-align: center;
    line-height: 30px;
    margin-top: 30px; /* ajustează după preferințe */
    left: 180px;
    font-size: 30px;
    color: #cacaca7e;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}


.back-arrow-reset:hover {
    color: #21a13d;
    transform: scale(1.1);
}

.back-arrow-reset .tooltip-text {
    visibility: hidden;
    opacity: 0;
    background-color: transparent; /* Poți schimba dacă dorești alt fundal */
    color: #cacaca7e;
    text-align: center;
    padding: 2px 4px;
    border-radius: 4px;
    position: absolute;
    left: 50%;  /* Centrat orizontal față de săgeată */
    bottom: -120%;  /* Plasează tooltip-ul deasupra săgeții */
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
    font-size: 12px;
}

.back-arrow-reset:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.language-switcher {
    position: fixed;
    top: 20px;         /* ajustează după preferințe */
    right: 75px;       /* ajustează după preferințe */
    z-index: 1000;
}

/* Dimensiunea butonului (rămâne aceeași, dar poți ajusta după preferințe) */
.language-button {
    width: 50px;
    height: 50px;    
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.language-button:hover {
  transform: scale(1.2);
}

.language-button img {
    width: 140%;    /* imaginea se scalează astfel încât să depășească ușor butonul */
    height: auto;
    display: block;
}

/* Dropdown-ul limbii */
.language-dropdown {
    display: none;
    position: absolute;
    top: 55px;      /* plasare dedesubtul butonului */
    left: 5px;       /* aliniere la dreapta */
    background: #394452;
    padding: 10px;
    border-radius: 6px;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.5);
    transition: opacity 0.3s ease;
}

.language-switcher:hover .language-dropdown {
    display: flex;
    flex-direction: column;
}

.language-dropdown button {
    background: none;
    border: none;
    margin-bottom: 5px;
    cursor: pointer;
    padding: 2px;
    transition: transform 0.2s ease;
}

.language-dropdown button:hover {
    transform: scale(1.1);
  }