.ws-input {
    border: 1px solid #d0d1d3;
    background: #fff;
    color: #303537;
    height: 50px;
    width: 100%;
    font-size: 15px;
    padding: 10px 10px;
    border-radius: 5px;
    outline: none;
}
.ws-input:focus ~ .ws-label {
    transform: translateY(-100%);
    font-size: 12px;
    color: #999;
}
.ws-input-div {
    position: relative;
    margin-bottom: 40px;
}
.webinar-registration .ws-input-div.email_error:before {
    content: 'Podano błędny adres e-mail';
    position: absolute;
    right: 0%;
    top: -17px;
    color: red;
    font-weight: bold;
    transform: translate(0%, -50%);
    width: 70%;
    text-align: right;
    font-size: 14px;
    left: unset;
}
.ws-label {
    position: absolute;
    left: 12px;
    top: 11px;
    font-size: 16px;
    color: #333;
    transition: all 0.3s;
    pointer-events: none;
}

.ws-label-up {
    top: -25px;
    font-size: 12px;
    color: #888;
    left: 2px;
}

.ws-input {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    box-shadow: none;
    transition: all 0.3s;
}

.ws-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    border-color: #007bff;
}
.ws-checkbox-div {
    display: flex;
}
.save-to-webinar {
  display:none;
}
.save-to-webinar {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background-color: #007cba;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.save-to-webinar:hover {
    background-color: #006799;
}
