body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #d9f1ff, #ffffff);
}

.products-nav {
    background: linear-gradient(135deg, #083b66, #0f5fa8);
    padding: 16px 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 90px);
    padding: 20px;
}

.register-container {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    border: 1px solid rgba(15,95,168,0.1);
    transition: 0.3s;
}

.register-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.register-container h2 {
    text-align: center;
    color: #083b66;
    margin-bottom: 28px;
    font-size: 34px;
    letter-spacing: 1px;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #083b66;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d7e2;
    border-radius: 12px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #0f5fa8;
    box-shadow: 0 0 8px rgba(15,95,168,0.25);
}

.register-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: linear-gradient(135deg, #0f5fa8, #083b66);
    color: white;
    font-size: 18px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

.register-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link p {
    color: #333;
}

.login-link a {
    color: #0f5fa8;
    text-decoration: none;
    font-weight: bold;
}

.login-link a:hover {
    text-decoration: underline;
}

.register-container h2::before {
    content: "📝 ";
}

.logo a {
    color: #ffffff;
    text-decoration: none;
}

.logo h1 {
    margin: 0;
    font-size: 32px;
    letter-spacing: 1px;
}