*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f3f2f7;
    padding:20px;
}

.container{
    width:100%;
    max-width:1200px;
    background:white;
    border-radius:25px;
    display:flex;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.left{
    flex:1;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.left h1{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:15px;
}

.left span{
    color:blueviolet;
}

.left p{
    color:#666;
    margin-bottom:30px;
    font-size:1.05rem;
}

.input-group{
    margin-bottom:20px;
}

.input-group input{
    width:100%;
    padding:15px;
    border:none;
    background:#f5f5f5;
    border-radius:12px;
    outline:none;
    font-size:1rem;
}

.password-box{
    position:relative;
}

.password-box span{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
}

.options{
    display:flex;
    justify-content:space-between;
    margin-bottom:25px;
    font-size:0.9rem;
}

.options a{
    color:blueviolet;
    text-decoration:none;
}

button{
    width: 100%;
    padding:15px;
    border:none;
    border-radius:14px;
    text-decoration: none;
    

    background:linear-gradient(
    135deg,
    #8b5cf6,
    #6d28d9
    );
    color:white;
    font-size:1rem;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:translateY(-3px);
}

.signup{
    margin-top:20px;
    text-align:center;
}

.signup a{
    color:blueviolet;
    text-decoration:none;
    font-weight:600;
}

.right{
    flex:1;
    background:#f8f6ff;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.right img{
    width:100%;
    max-width:500px;
}

/* Tablet */

@media(max-width:900px){

.container{
    flex-direction:column;
}

.left{
    padding:40px;
}

.left h1{
    font-size:3rem;
}

.right{
    order:-1;
}

.right img{
    max-width:350px;
}
}

/* Mobile */

@media(max-width:500px){

.left{
    padding:25px;
}

.left h1{
    font-size:2.3rem;
}

.options{
    flex-direction:column;
    gap:10px;
}

button{
    padding:14px;
}
}