* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

.form {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #c9ccd1;
}

.form-section {
    display: flex;
    height: 80vh;
    flex-direction: column;
    align-items: center;
    width: 400px;
    min-width: 1px;
    background-color: #ffffff;
    box-shadow: 5px 5px 10px rgba(49, 16, 16, 0.3);
    border: 1px solid black;
}


.form-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;


}

.form-input {
    width: 70%;
    border: 1px solid rgb(102, 102, 102);
    border-radius: 5px;
    outline: none;
    font-size: 0.9em;
    padding: 10px;
    font-weight: 500;
    margin: 10px;
    background-color: rgba(214, 214, 214, 0.11);
}

.form-input:focus {
    border: 2px solid rgb(1, 207, 197);
    padding: 9px;
}

.form-title {
    display: flex;
    padding-bottom: 20px;
    flex-direction: column;
    width: 200px;
    margin-top: 25px;
}

.form-title#RegisterTitle {
    margin-top: 25px;
    padding-bottom: 10px;
}

h1 {
    color: rgb(3, 141, 146);
}

.error-messages {
    margin-top: -8px;
    color: rgb(228, 3, 3);
    font-size: 10px;
    list-style: none;
    align-self: flex-start;
    margin-left: 65px;
    margin-bottom: -2px;
}

.login_button {
    position: relative;
    width: 70%;
    height: 5vh;
    font-size: 18px;
    background-color: rgb(3, 141, 146);
    color: rgb(247, 247, 247);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    margin: 5px;
}

.login_button#RegisterButton {
    margin-top: 25px;
    margin-bottom: 40px;
}

.login_button:hover {
    background-color: rgb(1, 59, 61);
}

.login_icons {
    display: flex;
    width: 70%;
}

.login_icons img {
    width: 20px;
}


.link_button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 33px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    color: rgb(59, 59, 59);
    background-image: #f0f2f5;
    border: 1px solid rgb(102, 102, 102);
    margin-bottom: 20px;
}

.link_button:hover {
    background-color: rgb(165, 165, 165);
    color: white;

}

#ForgotPasswordLink {
    text-decoration: none;
    color: rgb(0, 144, 211);
    font-size: 12px;
    font-family: Helvetica, Arial, sans-serif;
    align-self: flex-end;
    margin-right: 60px;
    margin-top: 2px;
}

#or {
    margin-top: 20px;
    margin-bottom: 40px;
    width: 70%;
}

.need-account {
    font-size: 15px;
}

.need-account a {
    text-decoration: none;
}


@media (max-width: 460px) {
    .form-section {
        width: 360px;
    }

    .form-title img {
        width: 150px;
    }
}

@media (min-height: 700px) {
    .form-section {
        width: 360px;
        height: 70vh;
    }

}

#successful {
    display: grid;
    margin-top: 50%;
    text-align: center;
}

#successful a {
    margin-top: 10px;
    font-size: 18px;
}

/* chat */

#controller {
    width: 446px;
    height: 59px;
    background-color: red;
}

#filho {
    width: 300px;
    height: 40px;
    background-color: rgb(0, 255, 234);
}

@media (max-width: 460px) {
    #controller {
        width: 300;
        background-color: rgb(77, 77, 77);
    }
}