
/* ============================= */
/* ATM CARD (MAIN UI)            */
/* ============================= */
.atm-card {
    padding: 24px;
    border-radius: 20px;

    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #ffffff;

    box-shadow: 
        0 10px 25px rgba(0,0,0,0.25),
        inset 0 0 1px rgba(255,255,255,0.15);

    position: relative;
    overflow: hidden;

    transition: all 0.25s ease;
}

/* Hover */
.atm-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.35),
        inset 0 0 1px rgba(255,255,255,0.25);
}

/* ============================= */
/* MATTE OVERLAY                 */
/* ============================= */
.atm-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

/* ============================= */
/* SHINE EFFECT                  */
/* ============================= */
.atm-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 30%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );

    transform: skewX(-20deg);
    animation: shineSwipe 4s infinite;
    pointer-events: none;
}

@keyframes shineSwipe {
    0% { left: -120%; }
    50% { left: 120%; }
    100% { left: 120%; }
}

/* ============================= */
/* PROFILE PHOTO                 */
/* ============================= */
.atm-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.35);
    object-fit: cover;
}

/* ============================= */
/* INPUT + SELECT (FIXED ALIGN)  */
/* ============================= */
.atm-form .form-control,
.atm-form .form-select {
    border-radius: 12px;
    border: none;

    padding: 12px 14px;
    height: 40px;

    background: #eef4ff;
    color: #1a1a1a;

    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
	
	width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.atm-form .form-control:focus,
.atm-form .form-select:focus {
    outline: none;
    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.35);
}

/* dropdown text */
.atm-form .form-select option {
    color: #000;
	border-radius: 12px;
	
}

/* ============================= */
/* BUTTON (MAIN FIXED VISIBILITY)*/
/* ============================= */
.atm-btn {
    border-radius: 30px;
    padding: 10px 22px;
    height: 40px;

    background: linear-gradient(135deg, #0f2f7a, #1e3a8a);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.25);

    font-weight: 600;

    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* hover */
.atm-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

/* active */
.atm-btn:active {
    transform: translateY(0px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ============================= */
/* SECONDARY BUTTONS FIXED       */
/* ============================= */
.atm-btn-primary {
    background: #2563eb;
    border: none;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    height: 40px;

    font-weight: 600;
}

.atm-btn-primary:hover {
    background: #1d4ed8;
}

.atm-btn-dark {
    background: #111827;
    border: none;
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    height: 40px;

    font-weight: 600;
}

.atm-btn-dark:hover {
    background: #1f2937;
}

.card.rounded {
  border-radius: 20px;
  border-radius: 20px;
}

