/* Dojo Registration Module Styles */

body { 
    font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    background-color: #f0f2f5; 
}

.font-primary {
    font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.card { 
    background-color: white; 
    border-radius: 12px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
    padding: 1rem; 
    transition: all 0.3s ease; 
}

@media (min-width: 640px) {
    .card { padding: 1.5rem; }
}
@media (min-width: 1024px) {
    .card { padding: 2rem; }
}

.btn { 
    font-weight: 500; 
    padding: 0.75rem 1.5rem; 
    border-radius: 8px; 
    transition: all 0.3s ease; 
    cursor: pointer; 
}

.btn-primary { 
    background-color: #4f46e5; 
    color: white; 
}

.btn-primary:hover { 
    background-color: #4338ca; 
}

.profile-pic-container { 
    position: relative; 
    width: 128px; 
    height: 128px; 
}

.profile-pic { 
    width: 128px; 
    height: 128px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 4px solid white; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
}

.profile-pic-label { 
    position: absolute; 
    bottom: 5px; 
    right: 5px; 
    background-color: #4f46e5; 
    color: white; 
    border-radius: 50%; 
    width: 32px; 
    height: 32px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
}

.profile-pic-container:hover .profile-pic-label { 
    opacity: 1; 
}

.form-section-title { 
    font-size: 1.1rem; 
    font-weight: 600; 
    color: #111827; 
    margin-top: 1.5rem; 
    margin-bottom: 1rem; 
    padding-bottom: 0.5rem; 
    border-bottom: 1px solid #e5e7eb; 
}

/* Mobile optimizations */
@media (max-width: 640px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    .btn, button { min-height: 44px; min-width: 44px; }
}

