body {
    background: #fff;
}

.h2,
h2 {
    font-size: 3.2rem;
}

.logo span {
    color: rgb(0, 0, 0);
    font-size: 30px;
    font-family: Orbitron, sans-serif;
}

.btn {
    border-radius: 100px;
}

.btn-outline {
    border: 1px solid #d3d3d3;
    background: #fff;
    color: #000;
    padding: 7px 15px;
    font-size: 15px;
    font-weight: 300;
}

.btn-outline:hover {
    background: #f5f5f5;
}

.alert ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.col-form {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.form {
    width: 350px;
    margin: 0 auto;
}

.form h1 {
    font-size: 1.9rem;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 15px;
}

.form .checkbox {
    font-weight: 400;
}

.form .form-control {
    display: block;
    width: 100%;
    padding: 9px 17px;
    height: auto;
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    background-color: #fff;
    border: 1px solid #d3d3d3;
    border-radius: 100px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form button {
    font-weight: 500;
    margin: 0 auto;
    background: #0d52cc;
    border-color: #0d52cc;
    border-radius: 100px;
    padding: 10px 15px;
}

.form-check-label {
    font-size: 13px;
    font-weight: 300;
}

.form-floating {
    position: relative;
}

.form-floating input {
    width: 100%;
    padding: 1.2rem 0.75rem 0.5rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s;
}

.form-floating label {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    color: #777;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.2s;
    background-color: white;
    padding: 0 4px;
}

/* Efeito flutuante ao focar ou se tiver texto */
.form-floating input:focus+label,
.form-floating input:not(:placeholder-shown)+label {
    top: 0;
    left: 15px;
    font-size: 12px;
    color: #0d52cc;
}

/* Suporte a inputs preenchidos */
.form-floating input:focus {
    border-color: #0d52cc;
    outline: none;
}

.form-floating input:focus::placeholder {
    color: transparent;
    opacity: 0;
}

.col-image {
    background-image: url('/assets/img/bg-register.jpg');
    /* Substitua pelo caminho correto */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    min-height: 100vh;
}

.typing-container {
    max-width: 500px;
}

.headline {
    font-size: 2rem;
    font-weight: 700;
}

.form-login {
    width: 360px;
    padding: 30px;
    border: 1px solid #d3d3d3;
    background: #fafafa;
    border-radius: 30px;
}

#benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

#benefits-list li .check {
    color: #a6ce39;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Estilo de digitação */
.typing-text {
    border-right: 2px solid #fff;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}



@media(max-width: 767px) {
    .col-form {
        align-items: flex-start;
        padding-top: 30px;
    }

    .col-image {
        display: none;
    }
}

@media(max-width:540px) {}