* {
    margin: 0;
    padding: 0;
    font-family: Comic Sans MS;
}

.reg-form {
    display: flex;
    height: 100vh;
    background: #fff;
    background: linear-gradient();
}

.form {
    margin: auto;
    padding: 1rem;
    border: 1px solid;
    border-radius: 0.5rem;
    background: url('Background.svg') right bottom;
    filter: drop-shadow(2px 4px 6px #333);
}

.title {
    text-align: center;
    margin-bottom: 1.25rem;
    color: #fff;
}

.form-input {
    width: 18.75rem;
    padding: 1rem;
    position: relative;
}

.floating-label {
    font-size: 13px;
    position: absolute;
    left: 25px;
    top: 26px;
    pointer-events: none;
    padding: 0 0.25rem;
    background: #fff;
    transition: 0.3s ease all;
}

.floating-input {
    font-size: 13px;
    font-weight: 600;
    display: block;
    width: 100%;
    height: 2.25rem;
    padding: 0 1rem;
    box-sizing: border-box;
    border: 1px solid #272727;
    border-radius: 6px;
    outline: none;
}

.floating-input:focus {
    border: 1px solid #08f3ff;
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label {
    top: 9px;
    font-size: 11px;
    color: #08f3ff;

}

.term-and-condition {
    font-size: 12px;
    text-align: center;
}

.term-and-condition span{
    color: #ff0000;
    cursor: pointer;
}

.radio-input {
    cursor: pointer;
}

.action-btn {
    text-align: center;
}

.btn-reg {
    height: 2rem;
    padding: 0 0.75rem;
    border-radius: 6px;
    line-height: 1.6;
    margin-top: 1.25rem;
    border: 1px solid transparent;
    cursor: pointer;
    background: #08f3ff;
    color: #fff;
}

.btn-reg:hover {
    background: lightcyan;
    border: 1px solid #08f3ff;
    transition: 0.3s ease all;
}

.login-redirect {
    font-size: 14px;
    color: rgb(4, 4, 4);
}

.login-redirect a {
    color: lightskyblue;
}