*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body{
    background: linear-gradient(to bottom right ,#f4fdf7,#e9fdf4);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.container{
    display: flex;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

/* Responsive Design for Login Page */
@media (max-width: 1024px) {
    .container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    
    .container {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
    
    .left {
        text-align: center;
    }
    
    .left h1 {
        font-size: 32px;
    }
    
    .left p {
        font-size: 16px;
    }
    
    .card {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }
    
    .left h1 {
        font-size: 28px;
    }
    
    .left p {
        font-size: 14px;
    }
    
    .icon-box {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
    }
    
    .icon-box span {
        font-size: 40px;
    }
    
    .card {
        padding: 25px 15px;
    }
    
    .tab-buttons button {
        font-size: 14px;
        padding: 10px;
    }
    
    input {
        padding: 12px 40px;
        font-size: 15px;
    }
    
    .btn {
        padding: 12px;
        font-size: 16px;
    }
}
/* Left design */
.left{
    font-size: 44px;
    color: #0b1b36;
    margin-bottom: 20px;
    font-weight: 900;
}
.left h1{
    font-size: 44px;
    color: #0b1b36;
    margin-bottom: 20px;
    font-weight: 900;
}
.left p{
    font-size: 18px;
    line-height: 1.6;
    color: #3a4759;
    margin-bottom: 25px;
}
ul{
    list-style: none;
}
ul li{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 18px;
    color: #10223a;
}
ul li::before{
    content: "●";
    color: #08a870;
    margin-right: 12px;
    font-size: 20px;
}
.icon-box{
    width: 90px;
    height: 90px;
    background: #daf7e9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin-bottom: 25px;
}
.icon-box span{
    font-size: 50px;
    color: #0fb16e;
}

/* RIGHT SIDE  */
.card{
    width: 420px;
    background: white;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0px 5px 30px rgba(0,0,0,0.1);
}
.tab-buttons{
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #f3f5f7;
}
.tab-buttons button{
    flex: 1;
    padding: 12px;
    background: none;
    font-size: 16px;
    cursor: pointer;
    transition: .3s ease;
}
.tab-buttons button.active{
    background: white;
    font: bold;
    color: #0fb16e;
    border-bottom: 2px solid #0fb16e;
}
.form-group{
    margin-bottom: 20px;
    position: relative;
}
input{
    width: 100%;
    padding: 14px 45px;
    border:1px solid #d5dce3;
    background: #fafafa;
    font-size: 16px;
}
.form-group .material-icons{
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
}
.btn{
    width: 100%;
    padding: 14px;
    background: #0fb16e;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: .3s;
}
.btn:hover{
      background: #0a935a;
}
.google-btn{
    margin-top: 20px;
    border:1px solid #d5dce3;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: #fff;
}