:root{
    --msa-button-right-border:#868282;
    --msa-sp-empty-events-bg-color:#FF6363;
}

.msa-auth-popup {
    font-family: var(--font-primary);
    padding:100px 105px;
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.msa-auth-header h2 {
    margin: 0;
}

.msa-auth-subtitle {
    margin: 0;
    color: var(--secondary-color);
}

.msa-auth-form{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.msa-form-body{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msa-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.msa-input {
    font-family: var(--font-primary) ;
    width: 100%;
    padding: 15px 12px;
    font-weight: 300;
    font-size: 16px;
    border: 1px solid var(--msa-course-tag-gray);
    border-radius: 4px;
    outline: none;
    transition: border 0.2s ease;
}

.msa-input:focus {
    border-color: var(--msa-section-bg);
}

.msa-error-message {
    color: var(--msa-error-red);
    margin-top: 12px;
    display: none;
}

.msa-btn-wrap {
    display: flex;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    width: 128px;
    height: 43px;
}

.register-button{
	width:201px;
}


.otp-button{
    width: 139px;
}

.msa-otp-inputs{
    display: flex; 
    flex-direction: row;
    gap: 12px;
}

.msa-otp-digit {
    font-family: var(--font-primary) ;
    width: 42px;
    height: 42px;
    text-align: center;
    padding: 9px 12px;
    font-size: 16px;
    border: 1px solid var(--msa-course-tag-gray);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.msa-btn-left {
	font-family:var(--font-secondary);
    background-color: var(--msa-primary-color);
    flex: 1;
    align-content: center;
    text-align: center;
    width: 88px;
    border-right: 1px solid var(--msa-button-right-border);
}

.msa-btn-right {
    background-color: var(--msa-primary-color);
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msa-btn-wrap .msa-btn-right img{
    width:24px;
    height: 24px;
    max-width: unset;
}

.msa-auth-switch {
    margin:0;
}

.msa-auth-link{
    color: var(--msa-course-tag-blue);
    font-weight: 300;
    text-decoration: underline !important;
}

.msa-success {
    color: var(--msa-success-green);
}

.msa-error {
    color: var(--msa-error-red);
    font-size: 14px;
}

.msa-auth-form .custom-button{
    padding: 0;
}


.empty-schedule-result {
    background: var(--msa-sp-empty-events-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
}

.empty-schedule-result .caption-secondary{
    color : var(--msa-tertiary-color);
}

@media screen and (max-width: 1200px) {
   .msa-auth-popup {
    padding:96px 43px 96px 65px;

   }
}

@media screen and (max-width: 992px) {
   .msa-auth-popup {
    padding:51px 50px;

   }
}

@media screen and (max-width: 576px) {
   .msa-auth-popup {
    padding:51px 20px;
   }

   .msa-otp-digit {
    width: 40px;
    height: 40px;
   }
}

@media screen and (max-width: 360px) {
   .msa-auth-popup {
    padding:50px 20px;
   }

   .msa-auth-header h2 {
    font-size: 24px;
   }

   .msa-otp-inputs {
    gap: 10px;
   }
}