
/*******************************************
MODAL OVERLAY
*******************************************/

.signin-modal-overlay{

position:fixed;

top:0;

left:0;

right:0;

bottom:0;

background:rgba(0,0,0,0.5);

display:none;

align-items:center;

justify-content:center;

z-index:9999;

}


/*******************************************
MODAL CONTAINER
*******************************************/

.signin-modal-container{

width:90%;

max-width:380px;

background:#ffffff;

border-radius:14px;

overflow:hidden;

animation:modalSlideUp 0.25s ease;

}


@keyframes modalSlideUp{

from{

transform:translateY(40px);

opacity:0;

}

to{

transform:translateY(0);

opacity:1;

}

}


/*******************************************
HEADER
*******************************************/

.signin-header{

display:flex;

justify-content:space-between;

align-items:center;

padding:15px;

border-bottom:1px solid #e5e7eb;

}


.signin-title{

font-size:18px;

font-weight:600;

}


.signin-close{

font-size:20px;

cursor:pointer;

color:#6b7280;

}


/*******************************************
BODY
*******************************************/

.signin-body{

padding:20px;

display:flex;

flex-direction:column;

gap:15px;

}


/*******************************************
BUTTON
*******************************************/

.signin-button{

display:flex;

align-items:center;

justify-content:center;

gap:10px;

padding:14px;

border-radius:10px;

font-size:15px;

font-weight:600;

text-decoration:none;

cursor:pointer;

position:relative;

}


/*******************************************
GOOGLE
*******************************************/

.google-button{

background:#ffffff;

border:1px solid #e5e7eb;

color:#111827;

}


/*******************************************
PHONE
*******************************************/

.phone-button{

background:#f3f4f6;

color:#9ca3af;

}


.disabled-button{

cursor:not-allowed;

}


/*******************************************
COMING SOON
*******************************************/

.coming-soon{

position:absolute;

right:10px;

font-size:11px;

background:#111827;

color:#ffffff;

padding:2px 6px;

border-radius:6px;

}
    /*******************************************
OVERLAY
*******************************************/
.bigo-modal-overlay{

position:fixed;
inset:0;

background:rgba(15,23,42,0.55);

display:none;

align-items:center;
justify-content:center;

z-index:9999;

backdrop-filter:blur(6px);

padding:20px;

}


/*******************************************
MODAL CONTAINER
*******************************************/
.bigo-modal{

width:100%;
max-width:380px;

background:#ffffff;

border-radius:18px;

box-shadow:
0 20px 60px rgba(0,0,0,0.25);

overflow:hidden;

animation:bigoFade .25s ease;

}

@keyframes bigoFade{

from{

opacity:0;
transform:translateY(20px);

}

to{

opacity:1;
transform:none;

}

}


/*******************************************
HEADER
*******************************************/
.bigo-modal-header{

height:60px;

display:flex;
align-items:center;
justify-content:space-between;

padding:0 18px;

font-size:18px;
font-weight:600;

border-bottom:1px solid #f1f5f9;

}


#bigoModalClose{

cursor:pointer;

font-size:18px;

color:#64748b;

transition:.2s;

}

#bigoModalClose:hover{

color:#111;

}


/*******************************************
PACKAGE
*******************************************/
.bigo-package{

margin:18px;

padding:14px 16px;

border-radius:14px;

background:#f8fafc;

display:flex;
justify-content:space-between;
align-items:center;

border:1px solid #e2e8f0;

}


.bigo-package div:first-child{

display:flex;
align-items:center;
gap:10px;

font-weight:600;

font-size:16px;

}


.bigo-package i{

color:#facc15;

font-size:18px;

}


#modalPrice{

background:#111827;

color:white;

padding:6px 14px;

border-radius:8px;

font-size:14px;

font-weight:600;

}


/*******************************************
INPUT
*******************************************/
.bigo-input-section{

padding:0 18px 5px;

}


.bigo-input-section label{

font-size:13px;

color:#64748b;

margin-bottom:6px;

display:block;

}


.bigo-input-section input{

width:100%;

padding:14px;

border-radius:12px;

border:1px solid #e2e8f0;

font-size:15px;

transition:.2s;

outline:none;

box-sizing:border-box; /* الحل */

}

.bigo-input-section input:focus{

border-color:#22c55e;

outline:3px solid rgba(34,197,94,0.15);

}

/*******************************************
USER CARD
*******************************************/
.bigo-user-card{

margin:18px;

padding:12px;

border-radius:14px;

border:1px solid #e2e8f0;

display:flex;
align-items:center;
gap:12px;

background:#f8fafc;

transition:.2s;

}


.bigo-user-card.active{

border-color:#22c55e;

background:#f0fdf4;

}


.bigo-user-card img{

width:52px;
height:52px;

border-radius:50%;

object-fit:cover;

}


#bigoNickname{

font-weight:600;

font-size:15px;

}


#bigoIdText{

font-size:13px;

color:#64748b;

}


/*******************************************
PAYMENT BUTTON
*******************************************/
#bigoContinueBtn{

margin:0 18px 18px;

width:calc(100% - 36px);

padding:16px;

border:none;

border-radius:14px;

background:linear-gradient(
135deg,
#16a34a,
#22c55e
);

color:white;

font-size:16px;
font-weight:600;

cursor:pointer;

box-shadow:
0 8px 20px rgba(34,197,94,0.35);

transition:.2s;

}

#bigoContinueBtn:hover{

transform:translateY(-1px);

box-shadow:
0 12px 25px rgba(34,197,94,0.4);

}

#bigoContinueBtn:active{

transform:scale(.98);

}

/* LTR */

.signin-modal-container.ltr{

direction:ltr;
text-align:left;

}


/* RTL */

.signin-modal-container.rtl{

direction:rtl;
text-align:right;

}
