.register-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.25);
    padding: 50px 40px;
    max-width: 800px;
    width: 100%;
    color: #001222;
}

.register-title {
    font-weight: 600;
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.register-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #fdd835;
    margin: 10px auto 0;
    border-radius: 2px;
}

.form-label {
    font-weight: 500;
    color: #001222;
    margin-bottom: 6px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #fdd835;
    box-shadow: 0 0 0 0.2rem rgba(253, 216, 53, 0.25);
}

.btn-primary {
    background-color: #001222;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    padding: 12px 20px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #002e5b;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.password-toggle {
    position: relative;
}

.password-toggle i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
    transition: color 0.3s;
}

.password-toggle i:hover {
    color: #001222;
}

.text-muted a {
    color: #001222;
    font-weight: 500;
    text-decoration: none;
}

.text-muted a:hover {
    text-decoration: underline;
}