*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter' , sans-serif;
}

.register{
    display: flex;
    background-color: #F3F4F6;
    align-items: center;
    height: 100vh;
}

.left{
    width: 80%;
    text-align: center;
    min-height: 30vh;
}

.left h1{
    color: #002b86;
    width: 100%;
    margin-bottom: 10px;
}

.left h3{
    color: #6b7280;
    margin-bottom: 30px;
}

.left i{
    position: absolute;
    margin-left: 10px;
    margin-top: 15px;
}
.left .input-tags{
    position: relative;
    margin: auto;
}
.left input{
    width: 50%;
    padding: 15px;
    padding-left: 40px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid;
}
.left input:focus{
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.left .register-button{
    color: #F3F4F6;
    background-color: #002b86;
    background: linear-gradient(135deg,#1e3a8a,#2563eb);
    border-radius: 10px;
    padding: 15px;
    width: 50%;
    border: none;
}
.left .register-button:hover{
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.left p{
    margin-top: 10px;
    color: #6b7280;
}
.left a{
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    color: #002b86;
}
.left a:hover{
    color: purple;
}
.right{
    background-size: cover;
    background-position: right;
    width: 50%;
    height: 100%;

}
.right img{
    width: 100%;
    height: 100%;
    background-size: contain;
}
@media (max-width: 768px) {
    .right{
        display: none;
    }
    .left{
        width: 100%;
    }
}
