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

.register-page::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.register-page::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.15) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

.register-box {
    width: 100%;
    max-width: 500px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 32px;
    padding: 60px 50px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
    animation: glow 4s ease-in-out infinite;
}

.register-icon {
    font-size: 80px;
    text-align: center;
    margin-bottom: 20px;
    display: block;
    animation: float 5s ease-in-out infinite;
}

.register-box h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}

.register-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    margin-bottom: 40px;
}

.register-box input {
    margin-bottom: 25px;
    padding: 20px 24px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
}

.register-box input:focus {
    border-color: #667eea;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.25);
}

.register-btn {
    width: 100%;
    padding: 20px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.register-link {
    text-align: center;
    margin-top: 40px;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.register-link a {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.register-link a:hover {
    color: #764ba2;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}