.title {
    font-weight: bold;
    font-size: 34px;
    align-items: center;
    text-align: center;
    margin-top: 42px;
}

.form {
    width: fit-content;
    padding: 48px;
    border-radius: 24px;
    margin: 0 auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
}

.username, .password, .email {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}

.username input, .password input, .email input {
    color: black;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 48px;
    border-color: transparent;
    background-color: #f5f5f5;
    /*box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);*/
}

.username input:focus, .password input:focus, .email input:focus {
    outline-color: var(--light-purple);
}

.submit {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.register {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
}

.register a {
    color: var(--light-purple);
}

.right {
    display: flex;
    align-items: flex-end;
}

.teams-side-image {
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.teams-side-image img {
    width: 400px;
}

.turnstile-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 6px 0 18px;
}

.main {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 40px;
}

.forgot-password {
    margin-top: 10px;
    font-size: 16px;
    float: right;
}

.forgot-password a {
    color: var(--light-purple);
}