/* Register Page Styles */
.register-page {
    background: var(--tm-light-grey);
    padding: 60px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    width: 100%;
    max-width: 500px;
    padding: 0 24px;
}

.register-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.register-header {
    text-align: center;
    margin-bottom: 30px;
}

.register-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: #1f262d;
    margin: 0 0 10px 0;
}

.register-header p {
    color: #4b5563;
    margin: 0;
    font-size: 16px;
}

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

.register-form label {
    display: block;
    font-weight: 600;
    color: #1f262d;
    margin-bottom: 8px;
    font-size: 14px;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    background: #f9fafb;
}

.register-form input:focus {
    outline: none;
    border-color: #026cdf;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(2, 108, 223, 0.1);
}

.register-submit {
    width: 100%;
    padding: 14px;
    background: #026cdf;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.register-submit:hover {
    background: #004ea3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 108, 223, 0.3);
}

.login-link {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #4b5563;
}

.login-link a {
    color: #026cdf;
    font-weight: 600;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Error/Success Messages */
.message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}