/* Register Page Styles */

.register-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.register-card {
    max-width: 600px;
    width: 100%;
}

.register-header {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.register-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.photo-preview {
    max-width: 150px;
    max-height: 150px;
    margin-top: 1rem;
    border-radius: 0.5rem;
    display: none;
}

.photo-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-upload-area:hover {
    border-color: #0d6efd;
    background-color: #f8f9fa;
}

.photo-upload-area.dragover {
    border-color: #0d6efd;
    background-color: #e7f3ff;
}
