/*==================================================
MYROOMO LOGIN PAGE
==================================================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

background:#f4f8ff;

overflow-x:hidden;

color:#1e293b;

}

/*==================================================
BACKGROUND
==================================================*/

.login-bg{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:

linear-gradient(135deg,#0A4DFF 0%,#0A1D56 100%);

z-index:-3;

overflow:hidden;

}

.login-bg::before{

content:"";

position:absolute;

width:700px;

height:700px;

border-radius:50%;

background:rgba(255,255,255,.06);

top:-250px;

left:-180px;

}

.login-bg::after{

content:"";

position:absolute;

width:600px;

height:600px;

border-radius:50%;

background:rgba(255,255,255,.05);

bottom:-220px;

right:-180px;

}

/*==================================================
SECTION
==================================================*/

.login-section{

min-height:100vh;

display:flex;

align-items:center;

padding:60px 0;

}

.login-wrapper{

display:flex;

align-items:stretch;

background:#fff;

border-radius:28px;

overflow:hidden;

box-shadow:0 30px 70px rgba(0,0,0,.18);

min-height:760px;

position:relative;

z-index:10;

}
/*==================================================
LEFT SIDE
==================================================*/

.login-left{

width:50%;

flex:0 0 50%;

padding:70px;

background:linear-gradient(135deg,#0A4DFF,#1d4ed8);

color:#fff;

position:relative;

display:flex;

flex-direction:column;

justify-content:center;

}

.login-left::before{

content:"";

position:absolute;

width:350px;

height:350px;

border-radius:50%;

background:rgba(255,255,255,.08);

top:-120px;

right:-120px;

}

.login-left::after{

content:"";

position:absolute;

width:250px;

height:250px;

border-radius:50%;

background:rgba(255,255,255,.05);

bottom:-90px;

left:-70px;

}

.logo-box{

margin-bottom:35px;

position:relative;

z-index:2;

}

.logo-box img{

height:70px;

width:auto;

}

.welcome-badge{

display:inline-block;

padding:10px 22px;

background:rgba(255,255,255,.15);

border-radius:40px;

font-size:14px;

font-weight:700;

margin-bottom:25px;

position:relative;

z-index:2;

}

.login-left h1{

font-size:54px;

font-weight:800;

line-height:1.15;

margin-bottom:25px;

position:relative;

z-index:2;

}

.login-left h1 span{

color:#FFD54A;

}

.login-left p{

font-size:18px;

line-height:1.9;

opacity:.95;

margin-bottom:40px;

position:relative;

z-index:2;

}
/*==================================================
LEFT SIDE FEATURES
==================================================*/

.login-highlights{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

position:relative;

z-index:2;

}

.login-highlights div{

display:flex;

align-items:center;

gap:12px;

font-size:15px;

font-weight:600;

padding:14px 18px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.15);

border-radius:12px;

backdrop-filter:blur(8px);

}

.login-highlights i{

color:#FFD54A;

font-size:18px;

}

/*==================================================
RIGHT PANEL
==================================================*/

.login-right{

width:50%;

flex:0 0 50%;

padding:70px;

background:#ffffff;

display:flex;

flex-direction:column;

justify-content:center;

}

.login-header{

text-align:center;

margin-bottom:35px;

}

.login-header h2{

font-size:36px;

font-weight:800;

color:#0f172a;

margin-bottom:10px;

}

.login-header p{

font-size:17px;

color:#64748b;

margin:0;

}

/*==================================================
LOGIN OPTIONS
==================================================*/

.login-options{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

align-items:stretch;

}

/*==================================================
LOGIN CARD
==================================================*/

.login-card{

background:#fff;

border:1px solid #e6ecf5;

border-radius:18px;

padding:24px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.3s;

height:100%;

display:flex;

flex-direction:column;

justify-content:flex-start;

}

.login-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(37,99,235,.15);

border-color:#2563eb;

}

.login-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#0A4DFF,#4F46E5);

transform:scaleX(0);

transition:.35s;

transform-origin:left;

}

.login-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 50px rgba(15,23,42,.15);

border-color:#2563eb;

}

.login-card:hover::before{

transform:scaleX(1);

}

/*==================================================
ICON
==================================================*/

.login-icon{

width:60px;

height:60px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

margin-bottom:18px;

}

.admin-icon{

background:rgba(37,99,235,.12);

color:#2563eb;

}

.employee-icon{

background:rgba(16,185,129,.12);

color:#10b981;

}

/*==================================================
CARD TEXT
==================================================*/

.login-card h3{

font-size:28px;

font-weight:700;

margin-bottom:12px;

}

.login-card p{

font-size:15px;

line-height:1.6;

margin-bottom:18px;

}

.login-card ul li{

padding:5px 0;

font-size:15px;

}

.login-card ul li{

display:flex;

align-items:center;

gap:10px;

padding:9px 0;

font-size:15px;

font-weight:500;

color:#334155;

}

.login-card ul li i{

color:#22c55e;

}

/*==================================================
BUTTONS
==================================================*/
.login-btn{

width:100%;

padding:12px;

font-size:15px;

margin-top:auto;

}

.admin-btn{

background:linear-gradient(135deg,#0A4DFF,#2563eb);

color:#ffffff;

}

.admin-btn:hover{

background:linear-gradient(135deg,#2563eb,#1d4ed8);

color:#ffffff;

transform:translateY(-2px);

}

.employee-btn{

background:linear-gradient(135deg,#10b981,#059669);

color:#ffffff;

}

.employee-btn:hover{

background:linear-gradient(135deg,#059669,#047857);

color:#ffffff;

transform:translateY(-2px);

}
/*==================================================
LOGIN FOOTER
==================================================*/

.login-footer{

margin-top:35px;

padding-top:25px;

border-top:1px solid #e2e8f0;

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

}

.login-footer div{

display:flex;

align-items:center;

gap:10px;

font-size:14px;

font-weight:600;

color:#475569;

}

.login-footer i{

color:#2563eb;

font-size:16px;

}

/*==================================================
ANIMATIONS
==================================================*/

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:translateY(0);

}

}

.login-left{

animation:fadeUp .8s ease;

}

.login-right{

animation:fadeUp 1s ease;

}

.login-card{

animation:fadeUp 1.2s ease;

}

.login-card:hover .login-icon{

transform:scale(1.08) rotate(5deg);

transition:.3s;

}

.login-btn i{

transition:.3s;

}

.login-btn:hover i{

transform:translateX(6px);

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#edf2f7;

}

::-webkit-scrollbar-thumb{

background:#2563eb;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#1d4ed8;

}

/*==================================================
TABLET
==================================================*/

@media (max-width:1200px){

.login-wrapper{

grid-template-columns:1fr;

}

.login-left{

text-align:center;

}

.login-highlights{

margin-top:40px;

}

}

/*==================================================
MOBILE
==================================================*/

@media (max-width:992px){

.login-right{

padding:40px;

}

.login-options{

grid-template-columns:1fr;

}

.login-left{

padding:50px 35px;

}

.login-left h1{

font-size:42px;

}

}

/*==================================================
SMALL MOBILE
==================================================*/

@media (max-width:768px){

.login-section{

padding:25px 15px;

}

.login-wrapper{

border-radius:20px;

}

.login-left{

padding:40px 25px;

}

.login-right{

padding:30px 20px;

}

.logo-box img{

height:55px;

}

.login-left h1{

font-size:34px;

}

.login-left p{

font-size:16px;

}

.login-header h2{

font-size:28px;

}

.login-card{

padding:28px 22px;

}

.login-card h3{

font-size:22px;

}

.login-icon{

width:70px;

height:70px;

font-size:28px;

}

.login-footer{

justify-content:center;

text-align:center;

}

.login-highlights{

grid-template-columns:1fr;

}

}

/*==================================================
EXTRA SMALL DEVICES
==================================================*/

@media (max-width:480px){

.login-left{

padding:30px 20px;

}

.login-right{

padding:25px 18px;

}

.login-left h1{

font-size:30px;

}

.login-header h2{

font-size:24px;

}

.login-card{

padding:24px 18px;

}

.login-btn{

padding:14px;

font-size:15px;

}

.welcome-badge{

font-size:13px;

padding:8px 18px;

}

}
.container{

max-width:1350px !important;

}

.login-section{

padding-top:140px;

padding-bottom:80px;

}

.login-wrapper *{

box-sizing:border-box;

}

.login-right h2{

font-size:42px;

font-weight:800;

margin-bottom:10px;

}

.login-right p{

font-size:17px;

line-height:1.7;

}

.login-card ul{

margin-top:18px;

margin-bottom:20px;

}

.login-card ul li{

margin-bottom:8px;

}

@media(max-width:992px){

.login-options{

grid-template-columns:1fr;

}

}

.login-left,

.login-right{

width:100%;

flex:100%;

padding:45px;

}

}