input:focus {
    outline: 1px solid #EBEBEB;
    border: none;
}

.placeholder {
    display: block;
    height: 40px;
    line-height: 40px;
    width: 150px;
}


.error-message {
    display: none;
    font-size: 13px;
    line-height: 20px;
    color: red;
}

.message {
    width: 100%;
    height: 100px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    color: #0b0c10;

}

.message::placeholder {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
}

textarea:focus {
    outline: 1px solid #EBEBEB;
    border: none;

}

.btn {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 40px;
    border: 1px solid #EBEBEB;
    margin-left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.custom-toast {
    position: fixed;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.ui.success.toast.custom-toast {
    background-color: #4175be;
    color: #ffffff;
    border: 1px solid #4175be;
    font-size: 18px;
    border-radius: 5px;
    padding: 15px;
}