body {
    min-height: 100vh;
    background: url('../resourcesnew/Login page/Login_banner.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    color: #2f3640;
}

@media (max-width: 768px) {
    body {
        background: url('../resourcesnew/Login page/Login_banner_mobile.jpg') center/cover no-repeat;
    }
}

.header {
    background: #f8fafc;
    backdrop-filter: blur(10px);
    padding: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.register-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.register-box {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    padding: 2rem;
    width: 100%;
}

.register-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e3799;
}

.required-field::after {
    content: '*';
    color: #e74c3c;
    margin-left: 4px;
}