
.register-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* ===== Page Header ===== */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2d3e50;
    margin-bottom: 8px;
}

.page-header h1 span {
    font-weight: 600;
    color: #00bcd4;
}

.page-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* ===== Form Container ===== */
.form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    margin-bottom: 50px;
}

/* ===== Register Form ===== */
.register-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: 0.2s;
    background: #f8fafc;
}

.form-group input:focus {
    outline: none;
    border-color: #00bcd4;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

/* ===== Terms Group ===== */
.terms-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
}

.terms-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.terms-group label {
    color: #4a4a4a;
    font-size: 0.95rem;
    cursor: pointer;
}

.terms-group label a {
    color: #00bcd4;
    font-weight: 500;
}

.terms-group label a:hover {
    text-decoration: underline;
}

/* ===== Register Button ===== */
.register-btn {
    background: #00bcd4;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.register-btn:hover {
    background: #0097a7;
}

.register-btn i {
    color: white;
}

/* ===== Login Link ===== */
.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link p {
    color: #6c757d;
    font-size: 0.95rem;
}

.login-link a {
    color: #00bcd4;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

/* ===== Social Register ===== */
.social-register {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #edf2f7;
}

.social-register p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.social-icon i {
    font-size: 1.3rem;
}

.social-icon.google {
    background: #fce8e8;
    color: #ea4335;
}

.social-icon.google:hover {
    background: #ea4335;
    color: white;
}

.social-icon.facebook {
    background: #e3f2fd;
    color: #1877f2;
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-icon.apple {
    background: #e8e8e8;
    color: #000;
}

.social-icon.apple:hover {
    background: #000;
    color: white;
}

/* ===== Features Section ===== */
.features-section {
    text-align: center;
}

.features-section h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #2d3e50;
    margin-bottom: 30px;
}

.features-section h2 span {
    font-weight: 600;
    color: #00bcd4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    transition: 0.2s;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: #00bcd4;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #e0f7fa;
    color: #00bcd4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 15px;
}

.feature-item h4 {
    color: #2d3e50;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .register-page {
        padding: 30px 15px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}