.login_choice{
    display: flex;
    justify-content: space-between;
    margin: auto;
    width: 60%;
    vertical-align: middle;
    padding: 10px 0;
}

.choice_selected{
    font-weight: bold;
    color: #667eea;
    position: relative;
}

.choice_selected::after{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.cursor{
    cursor: pointer;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 8px;
}

.cursor:hover{
    background-color: rgba(102, 126, 234, 0.1);
}

.code_image{
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

#login_form{
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.form_group{
    margin-bottom: 20px;
}

.form_group label{
    display: block;
    text-align: left;
    width: 100%;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.form_group input{
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.form_group input:focus{
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background-color: #fff;
}

#login_button{
    width: 40%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: auto;
    margin-top: 10px;
    transition: all 0.3s;
}

#login_button:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

#login_button:active{
    transform: translateY(0);
}