:root {
    --primary: #B29150; /* Goldish text */
    --text-dark: #222222;
    --text-light: #999999;
    --bg-color: #FAFAFA; /* Matches the very light backdrop with subtle noise */
    --btn-blue: #186A8B;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.register-container {
    width: 100%;
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Subtle Circles */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.03);
    pointer-events: none;
    z-index: 0;
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: 20%;
    right: -100px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: -50px;
}

.circle-3 {
    width: 800px;
    height: 800px;
    top: -200px;
    left: 20%;
}

.register-card {
    background: #FFFFFF;
    width: 100%;
    max-width: 480px;
    padding: 60px 45px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.register-header {
    margin-bottom: 40px;
}

.welcome-text {
    display: block;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.register-header h1 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
}

.register-form .form-group {
    margin-bottom: 30px;
}

.register-form label {
    display: block;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.register-form input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #EBEBEB;
    padding: 8px 0 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: transparent;
}

.register-form input::placeholder {
    color: #DDDDDD;
}

.register-form input:focus {
    outline: none;
    border-bottom-color: var(--primary);
}

.btn-register {
    width: 100%;
    background-color: var(--btn-blue);
    color: white;
    border: none;
    padding: 16px 0;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-register i {
    font-size: 14px;
}

.btn-register:hover {
    background-color: #124d66;
}

.register-footer {
    text-align: center;
}

.register-footer p {
    font-size: 11px;
    color: var(--text-light);
}

.register-footer p a {
    color: var(--primary);
    font-weight: 500;
}

.register-footer p a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .register-card {
        padding: 40px 30px;
    }
    
    .register-header h1 {
        font-size: 32px;
    }
}
