video {
    width: 620px;
    height: 688px;
    object-fit: cover;
    border-radius: 24px;
}

.email-placeholder {
    margin:-68px 0 0 12px;
    display: block;
    position: absolute;
    width: 50px;
    height: 25px;
    background-color: var(--clr-white);
    text-align: center;
    font-size: 14px;
} 
.reset-password-window {
    max-width: 600px; 
    width: calc(100% - 2 * var(--default-padding));
}
.signup-btn {
    padding: 9px 30px;
}
.signin-btn {
    padding: 8px 16px;
    transition: ease all .5s;
}
.signin-btn:hover {
    background-color: var(--clr-blue);
    transition: ease all .5s;
}

.login .responsive-layout {
    gap: 50px;
}
.login .flex-row ms-input{
    flex-grow: 1;
}

.login .next-btn{
    width: 100%;
}

.login .phone-field {
    position: relative;
}

.login .phone-field .ms-input {
    padding-left: 60px
}

.login .phone-field__start {
    margin-top: 18px;
    margin-left: 14px;
    position: absolute;
    font-size: 18px;
    z-index: 1;
}

.login-menu{
    width: 400px;
}

.login-menu > form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login .custom-checkbox span{
    margin: 0;
    padding: 0;
}

.reset-form{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.custom-checkbox {
    display:flex;
    align-items: center;
    gap:13px;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}
  

/* Custom visual checkbox */
.custom-checkbox .checkmark {
    display: inline-block;
    width: 17px;
    height: 17px;
    border: 2px solid var(--Grey-300, #777);
    border-radius: 5px; /* Makes it fully rounded */
    margin: 20px 0;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

/* Checkmark indicator when checked */
.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 3px;
    width: 6px;
    height: 6px;
    border: 2px solid var(--Grey-300, #777);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg); /* Creates the bird/checkmark look */
}
.custom-checkbox > .checkmark:focus  {
    border: 1px solid #5990D9 !important;
}

.break-line {
    height: 25px;
    margin: 32px 0 20px 0;
    position: relative;
}

.break-line > .line {
    height: 1px;
    background-color: #D9D9D9;
    width: 100%;
}

.break-line > .subtitle {
    left: 50%;
    transform: translateX(-50%);
    margin: -12px auto;
    position: absolute;
    width:35px;
    text-align: center;
    background-color: var(--clr-white);
    color: #6E6E6E; 

    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%; /* 24px */
}

.register-subtext .ms-button {
    text-decoration: underline;
    text-underline-offset: 6px; 
}

.register-subtext{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}