/* Instructions page styling - using school color scheme */
.centered-container-title {
    color: var(--color-4);
}

.instructions-subtitle {
    color: white;
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
}

/* Steps container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 16px;
}

/* Step cards */
.step-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Step number */
.step-number {
    background-color: var(--color-4);
    color: var(--color-4-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    flex-shrink: 0;
}

/* Step content */
.step-content {
    flex: 1;
}

.step-title {
    color: var(--color-4-dark);
    font-size: 1.3em;
    margin: 0 0 12px 0;
    font-weight: bold;
}

.step-description {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

/* Step actions */
.step-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 120px;
    justify-content: center;
}

.btn-signup {
    background-color: var(--color-4);
    color: var(--color-4-dark);
}

.btn-signup:hover {
    background-color: var(--color-4-dark);
    color: white;
    transform: translateY(-1px);
}

.btn-login {
    background-color: var(--color-2);
    color: var(--color-4-dark);
}

.btn-login:hover {
    background-color: var(--color-2-dark);
    color: white;
    transform: translateY(-1px);
}

/* Step info */
.step-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.info-item i {
    color: var(--color-4);
    width: 16px;
    text-align: center;
}

.info-item span {
    font-weight: 500;
}

/* Footer */
.instructions-footer {
    text-align: center;
    margin-top: 8px;
}

.footer-text {
    color: white;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-text a {
    color: var(--color-4);
    text-decoration: none;
}

.footer-text a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .step-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        padding: 12px;
    }
    
    .step-title {
        font-size: 1.2em;
    }
    
    .step-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .step-card {
        padding: 16px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
    }
    
    .step-title {
        font-size: 1.1em;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .btn {
        font-size: 15px;
        padding: 10px;
    }
} 