.loaded {
    display: none;
}

.registerBtn {
    background-color: #8e44ad;
    transition: all 0.2s ease-out;
}

.registerBtn:hover {
    background-color: #7a42c2;
}

.loginBtn {
    background-color: white;
    color: #8e44ad;
    border: 2px solid #8e44ad;
    transition: all 0.2s ease-out;
}

.title {
    font-weight: 900;
    text-align: center;
}

.description {
    font-weight: 500;
    text-align: center;
    font-size: 1.4rem;
}

.features {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.features h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    max-width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box img {
    width: 60px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.95em;
    color: #555;
}