.login-container {
    max-width: 400px;
    margin: 100px auto 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    border:1px solid #516ed2
}
.login-header {
    text-align: center;
    margin-bottom: 30px;
}
.login-header h2 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}
.login-header p {
    color: #7f8c8d;
    font-size: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-control {
    height: 45px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding-left: 15px;
    font-size: 15px;
}
.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
.checkbox {
    margin-top: 20px;
    color: #555;
}
.btn-login {
    background-color: #2c3e50;
    border: none;
    color: white;
    height: 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 10px;
    width: 100%;
    transition: all 0.3s;
}
.btn-login:hover {
    background-color: #1a252f;
    color:#fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-login:active {
    transform: translateY(0);
    color:#fff
}
.forgot-password {
    text-align: center;
    margin-top: 20px;
}
.forgot-password a {
    color: #3498db;
    text-decoration: none;
}
.forgot-password a:hover {
    text-decoration: underline;
}
.logo {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.captcha-image {
    flex: 1;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    font-weight: bold;
    color: #2c3e50;
    cursor: pointer;
    user-select: none;
}
.captcha-input {
    flex: 1;
}
.t_login_logo{width: 50%;border-radius: 100%}