:root {
    --bg-card: #1A1B24;
    --bg-body: linear-gradient(to top, #3A4154, #232330);
    --color-text: #fff;
    --light-blue: #5ED3EC;
    --error: #FA020F;
    --get-pro: #0FFC03;
}

@keyframes init {
    from {
        opacity: 0;
        transform: translateY(-5%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

body {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;;
    color: var(--color-text);
    height: 98vh;
    width: 98vw;
    display: flex;
    background: var(--bg-body);
    justify-content: center;
    align-items: center;
}

.disabled {
    opacity: 0.4;
    pointer-events: none;
}

#card {
    background: var(--bg-card);
    height: 500px;
    width: 500px;
    border-radius: 10px;
    box-shadow: 2px 2px 3px #0007;
    position: relative;
    opacity: 0;
    animation: init 1s ease forwards;
}

#card-user{
    display: grid;
    grid-template-rows: 37% 35% 28%;
    height: 100%;
    width: 100%;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-input {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#user-inputs{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mandatory {
    color: var(--error);
    margin-left: 7px;
}

input {
    color: var(--color-text);
    background: transparent;
    border:none;
    border-bottom: 1px solid var(--light-blue);
    outline: none;
    padding: 5px;
}

section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 20px;
}

.btn {
    height: max-content;
    width: max-content;
    position: absolute;
    padding: 7px 15px;
    border-radius: 5px;
    border: 2px solid var(--light-blue);
    background: transparent;
    color: var(--light-blue);
    transition: 300ms;
    cursor: pointer;
}

.btn#submit{
    bottom: 20px;
    right: 20px;
}
.btn#prec{
    bottom: 20px;
    left: 20px;
    display: none;
}
#container-link-payment{
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 7px;
    border: 1px solid var(--get-pro);
    border-radius: 5px;
    cursor: pointer;
    transition: 300ms;
    font-size: .8rem;
}
#container-link-payment:hover{
    background: var(--get-pro); 
}

#container-link-payment > a {
    color: var(--get-pro);
    text-decoration: none;
    transition: 300ms;
}
#container-link-payment > a:hover {
    color: #fff;
}

#section-link-reset-pw {
    padding-top: 40px; 
    padding-left: 40px; 
    width: 100%;
}

#container-link-reset-pw {
    padding: 7px;
    display: grid; 
    grid-template-columns: 5% 95%;
    font-size: .8rem;
}

#container-circle-link-reset-pw {
    position: relative;
    display: flex;
    align-items: center;
}
#circle-reset-pw{
    border: 1px solid #fff;
    transition: 300ms;
    border-radius: 50%;
    padding: 5px;
    position: absolute;
}

#container-link-reset-pw > a {
    color: #fff;
    text-decoration: none;
}



.btn:hover{
    background: #47DCF4;
    color: var(--color-text);
}

label{
    transition: 300ms;
    font-size: .8rem;
}

#type-registration{
    padding: 3px 5px;
    outline: none;
    color: var(--color-text);
    background: transparent;
    border: none;
}

#type-registration > option {
    color: #000;
}
