/* Admin Login - Custom Classes with prefix to avoid conflicts */
.adm-login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFB;
    padding: 2rem;
}

.adm-login-container {
    width: 100%;
    max-width: 400px;
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.adm-login-mandala {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.adm-login-mandala-top {
    top: 0;
    transform: translate(-50%, -50%);
}

.adm-login-mandala-bottom {
    bottom: 0;
    transform: translate(-50%, 50%);
}

.adm-login-mandala-img {
    width: 192px;
    height: 192px;
    object-fit: cover;
}

.adm-login-spacer {
    height: 3rem;
}

.adm-login-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.adm-login-title h1 {
    font-family: 'Hahmlet', serif;
    color: #724424;
    font-size: 1.875rem;
    font-weight: 700;
}

.adm-login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.adm-login-field {
    display: flex;
    flex-direction: column;
}

.adm-login-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.adm-login-input {
    width: 100%;
    padding: 0.7rem 1.1rem;
    border-radius: 1rem;
    border: none;
    background-color: #F3EDE4;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: #1F2937;
    outline: none;
    transition: all 0.2s;
}

.adm-login-input:focus {
    box-shadow: 0 0 0 1.5px rgba(114, 68, 36, 0.35);
}

.adm-login-input-wrapper {
    position: relative;
}

.adm-login-input-with-icon {
    padding-right: 3rem;
}

.adm-login-toggle-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #724424;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.2s;
}

.adm-login-toggle-btn:hover {
    opacity: 0.8;
}

.adm-login-toggle-btn svg {
    width: 15px;
    height: 15px;
}

.adm-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.adm-login-checkbox-wrapper {
    display: flex;
    align-items: center;
}

.adm-login-checkbox {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1px solid #d1d5db;
    accent-color: #724424;
    cursor: pointer;
}

.adm-login-checkbox-label {
    margin-left: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #724424;
}

.adm-login-forgot-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #724424;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.adm-login-forgot-link:hover {
    text-decoration: underline;
}

.adm-login-btn-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

.adm-login-btn {
    width: 208px;
    height: 46px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #FFFFFB;
    background-color: #56290A;
    border: 1px solid #724424;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.adm-login-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.adm-login-btn:active {
    transform: scale(0.98);
}

.adm-login-btn-text {
    position: relative;
    z-index: 1;
}

.adm-login-loader {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #56290A;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.adm-login-loader.show {
    display: flex;
}

.adm-login-btn-text.hidden {
    visibility: hidden;
}
