﻿
.auth-page-panel {
    display: flex;
    height: calc(100vh - 160px);
    box-sizing: border-box;
    max-width: 500px;
    align-items: center;
    margin: 0 auto;
}

    .auth-page-panel h2 {
        color: #000000;
    }

.auth-page-panel p {
    font-size: 25px;
}


.links-auth-panel {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    transform: scale(1);
    font-size: 20px;
}

.error-message-panel {
    color: red;
    margin-top: 10px;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
}

/* Botão */
.button-panel {
    background-color: #E40E18;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'BarlowCondensed', sans-serif;
}


.buttonUpdateQuantity-panel {
    background-color: #E40E18;
    color: white;
    font-size: 12px;
    padding: 5px;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    min-width: 200px;
}

.buttonSlim-panel {
    background-color: transparent;
    color: #E40E18;
    border: none;
    border-radius: 5px;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'BarlowCondensed', sans-serif;
}

    .buttonSlim-panel:hover {
        text-decoration: underline;
        cursor: pointer;
    }

.input-field-panel {
    background-color: white;
    color: black;
    border: solid 2px black;
    border-radius: 5px;
    padding: 12px;
    font-size: 20px;
    width: 100%;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
    font-family: 'BarlowCondensed', sans-serif;
}

    .input-field-panel:focus {
        outline: none;
        background-color: #f5f5f5;
    }


@media (max-width: 710px) {
    .auth-page-panel {
        padding: 20px;
    }
}