.register-page {
    background: linear-gradient(rgb(74, 144, 226), rgb(100, 185, 246)), url('background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.register-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
    position: relative;
}

.back-button {
    position: absolute;
    left: 20px;
    top: 20px;
    color: #666;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: var(--primary-color);
}

.register-box h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-group input::placeholder {
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.terms-checkbox {
    margin: 20px 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.terms-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.terms-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.terms-text a:hover {
    text-decoration: underline;
}

.register-submit-btn {
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px auto 0;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    font-weight: 700;
}

.register-submit-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Responsive Design */
@media (max-width: 480px) {
    .register-box {
        margin: 20px;
        padding: 30px;
    }
    
    .register-box h2 {
        font-size: 24px;
    }
    
    .form-group input {
        padding: 12px 16px;
        font-size: 15px;
    }

    .terms-text {
        font-size: 13px;
    }
}

/* Animation for error states */
.form-group.error input {
    border-color: #ff3d00;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer Styles */
.footer {
    background: #fff;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.footer-section h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #666;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.discord:hover {
    color: #7289da;
}

.social-link.youtube:hover {
    color: #ff0000;
}

.social-link.tiktok:hover {
    color: #000;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
} 