/* CSS Document */

/* Container to center the form on the page */
.centered-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 100vh;
}

/* Styling for the register form border */
#register_border {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 40px;
    background: #FFFFFF;
    border: 1px solid #cccccc;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styling for input fields within the form */
#register_border input[type=text],
#register_border input[type=password],
#register_border input[type=email] {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 12px;
}

/* Styling for the submit button within the form */
#register_border button {
    width: 100%;
    padding: 10px 0;
    border-radius: 4px;
    cursor: pointer;
}

/* Styling for terms and conditions */
#register_border .form-check-label {
    display: block;
    margin-top: 10px;
}

#register_border .form-check-input {
    margin-right: .5rem;
}

#formchecklabel {
    font-size: 10px;
    text-align: center;
}

#registerformchecklabel {
    font-size: 14px;
    text-align: center;
}

#registerborderlink {
    text-decoration: none;
    color: #2ac8c8;
}

#register1_submit {
    background-color: #2ac8c8;
    color: #ffffff;
    border: none;
}

#signuplink {
    text-decoration: none;
    color: #2ac8c8;
}
