.body-aling {
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.box-principal {
    width: 450px;
    height: 350px;

    background-color: #f5f5f5;

    border: 1px solid rgba(199, 138, 59);
    border-radius: 10px;

    display: flex;
    flex-direction: column;
}

.box-title {
    width: 100%;
    height: 20%;
    padding-left: 15px;

    box-sizing: border-box;

    border-bottom: 1px solid rgba(199, 138, 59);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    background: #009de6;

    font-size: 19px;
    color: #f5f5f5;
}

.form-login {
    margin-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;

    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.box-input {
    width: 225px;

    display: flex;
    flex-direction: column;
    gap: 5px;
}


label {
    padding-left: 5px;

    text-align: left;

    font-weight: 600;
}

input {
    box-sizing: border-box;
    height: 22px;
    font-size: 15px;
    text-align: center;

    border: 1px solid #333;
    border-radius: 30px;
}

input:focus {
    border: 2px solid #000;

    outline: none;

    background-color: #f5f5f5;

    font-weight: 600;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

button {
    width: 150px;
    height: 25px;

    background: #009de6;

    border: 1px solid rgba(199, 138, 59);
    border-radius: 20px;

    color: #f5f5f5;
    font-size: 17px;
    font-weight: 600;

    cursor: pointer;
}

button:hover {
    background-color: #0096db;

    color: #fff;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.box-empresa {
    padding-left: 7px;

    background-color: #e9e9e9;

    box-sizing: border-box;

    border-top: 1px solid rgba(199, 138, 59);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}