.register-container {
    padding: 30px 0;
    max-width: 500px;
    margin: 0 auto;
}

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

.register-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.register-header p {
    color: #666;
    font-size: 18px;
}

.register-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

.register-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

.btn-line {
    display: inline-block;
    background-color: #06C755;
    color: white;
    border-radius: 4px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-line:hover {
    background-color: #05b54c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-line i {
    margin-right: 10px;
    font-size: 20px;
}

.register-info {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 20px;
}

.register-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.register-info li {
    margin-bottom: 12px;
    font-size: 15px;
}

.register-info li:last-child {
    margin-bottom: 0;
}

.register-info li i {
    color: #06C755;
    margin-right: 8px;
}

.register-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
}

.register-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 576px) {
    .register-container {
        padding: 20px 15px;
    }
    
    .register-card {
        padding: 20px;
    }
    
    .btn-line {
        padding: 14px 28px;
        font-size: 16px;
    }
} 