.recovery-password-root {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: var(--bg-color);
    overflow: hidden;
}

.recovery-password-back-button {
    width: 25%;
    min-width: 340px;
    height: 3%;

    color: blue;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;

    margin: 10px;
}

.recovery-password-back-button:hover {
    cursor: pointer;
}

.recovery-password-panel {
    width: 25%;
    min-width: 340px;
    height: 60%;
    min-height: 440px;

    background-color: var(--fg-color);
    border-radius: 20px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 0 15px 3px rgb(206, 206, 206);
}

.recovery-password-logo-container {
    width: 72px;
    height: 72px;

    background: linear-gradient(to bottom right, rgb(87, 87, 255), rgb(255, 84, 255));

    color: white;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    margin-bottom: 10px;
}

.recovery-password-title-element {
    height: 10%;
    width: 80%;

    color: Black;

    text-align: center;

    font-size: 25px;
    font-weight: bold;
}

.recovery-password-description-element {
    height: 10%;
    width: 80%;

    color: Black;

    text-align: center;

    font-size: 16px;
    font-weight: medium;
}

.recovery-password-submit {
    height: 10%;
    width: 80%;

    color: white;
    background: linear-gradient(to right, rgb(87, 87, 255), rgb(189, 67, 189));

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;

    margin: 25px;
}