/* REGISTER PAGE */

.page-title-area {
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
}

/* Form wrapper */
.login-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

/* Title */
.login-title h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-title p {
    font-size: 14px;
    color: #777;
}

/* Inputs */
.login-wrapper input,
.login-wrapper select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Focus effect */
.login-wrapper input:focus,
.login-wrapper select:focus {
    border-color: #ffb606;
    box-shadow: 0 0 5px rgba(255, 182, 6, 0.4);
    outline: none;
}

/* Spacing */
.mb-20 {
    margin-bottom: 20px;
}

/* Button */
.login-btn .btn {
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

/* Hover */
.login-btn .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.1);
}

/* Footer */
.login-footer p {
    font-size: 14px;
    color: #777;
}

.login-footer a {
    color: #ffb606;
    font-weight: 500;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .login-wrapper {
        padding: 25px;
    }

    .page-title h1 {
        font-size: 28px;
    }
}