*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    -webkit-tap-highlight-color: rgba(112, 73, 186, 0.2);
}

.page {
    width: 100%;
    height: 98vh;
    display: flex;
    gap: 3rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 10rem;
}

.content {
    display: block;
    width: 25rem;
    max-width: 100%;
    padding: 1.5rem;
    background-color: #d3e7f2;
}


.content-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: #fff;
    border-radius: 25px;
    padding: 4rem 2rem;
}

.form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

input {
    border: none;
    border-bottom: 1px solid;
    color: #000;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

input::placeholder {
    color: #9f9f9f;
    font-size: 1rem;
    font-weight: bold;
}

input:focus {
    border-color: #d3e7f2;
    border-width: 2px;
}

.title {
    display: block;
    text-align: center;
    color: #6ab9e8;
    font-size: clamp(2.5em, -0.875em + 8.333333vw, 4em);
    font-weight: bold;
    margin: 0;
    font-family: sans-serif;
    letter-spacing: 6px;
}

.btn {
    border: 2px solid transparent;
    border-radius: 25px;
    outline: none;
    background-color: #6ab9e8;
    color: #fff;
    padding: 5px 2rem;
    font-size: clamp(1em, -0.875em + 8.333333vw, 1.25em);
    text-transform: uppercase;
    transition: all .3s;
    cursor: pointer;
    font-weight: bold;
}

.btn:hover {
    border: 2px solid #6ab9e8;
    background-color: transparent;
    color: #6ab9e8;
    transition: all .3s;
}

.error {
    display: none;
    width: 90%;
    text-align: center;  
    background-color: #eda0a0;
    color: #fff;
    border-radius: 8px; 
    padding: 5px 1rem;
    font-family: sans-serif;
}

.show {
    display: block;
}