.floating-input-group {
    --input-height: 50px; /* º¯¼ö¸¦ °øÅë ºÎ¸ð ¿ä¼Ò·Î ÀÌµ¿ */
    position: relative;
    margin-bottom: 1.5rem;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #6c757d;
    z-index: 10;
}

.floating-input {
    height: var(--input-height); /* º¯¼ö¸¦ »ç¿ëÇÏ¿© ³ôÀÌ ¼³Á¤ */
    padding-left: 3rem; /* ¾ÆÀÌÄÜ°úÀÇ °ãÄ§À» ¹æÁöÇÏ±â À§ÇÑ ÆÐµù */
    font-size: 1rem;
    background-color: rgba(241, 245, 249, 0.8);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

    .floating-input:focus {
        background-color: white;
        border-color: var(--primary-color, #007bff);
        box-shadow: 0 0 0 4px rgba(0, 120, 215, 0.15);
        outline: none;
    }

.floating-label {
    position: absolute;
    top: calc(var(--input-height) / 2);
    left: 1rem;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    pointer-events: none;
    color: #6c757d;
    font-weight: 500;
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
    top: 0;
    left: 1rem;
    font-size: 0.8rem;
    padding: 0 0.5rem;
    background-color: white;
    color: var(--primary-color, #007bff);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.remember-me {
    display: flex;
    align-items: center;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
    border-radius: 4px;
}

.forgot-password {
    color: var(--primary-color, #007bff);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .forgot-password:hover {
        color: #0056b3;
        text-decoration: underline;
    }

.login-actions {
    margin-bottom: 1.5rem;
}

/* ¹ÝÀÀÇü Ã³¸® */
    @media (max-width: 576px) {
        .floating-input {
            --input-height: 52px; /* ÀÛÀº È­¸é¿¡¼­´Â º¯¼ö °ª¸¸ ÀçÁ¤ÀÇ */
        }
    }
