.cep-modal {
    margin-top: 34vh;
}

.cep-modal .modal-body {
    display: flex;
    flex-direction: column;
}

.cep-modal .close {
    background-color: #ffffff;
    width: 30px;
    position: absolute;
    right: 10px;
}

.cep-modal h5 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.cep-modal p {
    font-size: 13px;
    text-align: center;
}

.cep-modal .form {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.cep-modal .form input {
    height: 48px;
    font-size: 15px;
    border-radius: 5px 0px 0px 5px;
}

.cep-modal .form input:focus {
    border: 1px solid #ccc;
    box-shadow: none;
}

.cep-modal .form button {
    padding: 5px 20px;
    border-radius: 0px 5px 5px 0px;
    background-color: #000000;
    font-size: 16px;
    border: none;
}

.cep-modal .form button:hover {
    color: #ffffff;
    border: none;
}

.cep-modal .error {
    color: #ff0101;
    text-align: start;
    height: 15px;
}