html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: rgb(206, 206, 206);
}
body {
    font-family: "Sora", sans-serif;
    min-height: 100vh;
    background: url("../backgrounds/signup-background.svg") no-repeat center center;
    background-size: cover;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-button {
    width: 100%;
    height: 2.2rem;
    border-radius: 1rem;
    background-color: rgb(71, 84, 210);
    color: white;
    border: none;
    font-family: "Sora", sans-serif;
    font-size: 80%;
    font-weight: 600;
}

.signup-section {
    padding: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border: solid 0.15rem;
    border-color: white;
    border-radius: 2rem;
    box-shadow: 0 0 1.5rem white;
    width: 22rem;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.signup-section h1 {
    display: block;
    font-size: 1.6rem;
    text-align: center;
    color: rgb(43, 43, 43);
    padding: 0 0 0.5rem;
    margin: 0;
}
.signup-section h2 {
    display: block;
    font-size: 0.8rem;
    text-align: center;
    color: rgb(99, 99, 99);
    padding: 0 0 1.3rem;
    margin: 0;
}
.signup-section form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

input {
    border: none;
    height: 2.7rem;
    border-radius: 1.3rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    padding-left: 1rem;
}
input::placeholder {
    color: rgb(64, 80, 230, 0.4);
    font-size: 0.8rem;
    font-family: "Sora", sans-serif;
    font-weight: 600;
}

.inputs-div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}
