/* =========================
   Page Wrapper
========================= */
.login-wrap {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
   Login Card
========================= */
.login-card {
    
    padding: 30px;
}

/* =========================
   Titles
========================= */
.login-subtitle {
    color: #f59e0b;
    margin-bottom: 5px;
}

/* =========================
   Button override (gradient)
========================= */
button.primary {
    width: 100%;
    background-color: #1a73e8!important;
    color: white!important;
    border: none!important;

}

/* =========================
   Footer
========================= */
.login-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.link-primary {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   Profile Image System
========================= */
.image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0,0,0,.04);
    background: var(--card)!important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    cursor: pointer;
    opacity: 0;
    transition: opacity .25s ease;
}

.image-wrapper:hover .upload-overlay:not(.disabled) {
    opacity: 1;
}

.upload-overlay.disabled {
    opacity: 0 !important;
    pointer-events: none;
}

.camera-icon {
    font-size: 20px;
}

.change-text {
    font-size: 12px;
    letter-spacing: .5px;
}
