/* Input Box Styling */
.input-login-modal {
    position: relative;
    margin-bottom: 20px;
}

.form-input-login-modal {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input-login-modal:focus {
    border-color: #007bff;
    /* Adjust color as needed */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    /* Soft glow on focus */
}

.floating-label-login-modal {
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 14px;
    transition: 0.2s ease all;
    font-size: 16px;
    color: #999;
}

.form-input-login-modal:focus~.floating-label,
.form-input-login-modal:not(:placeholder-shown)~.floating-label {
    top: -10px;
    left: 15px;
    font-size: 12px;
    color: #007bff;
    /* Adjust label focus color */
}

.input-container-login-modal {
    width: 100%;
    max-width: 300px;
    /* Adjust for desired width */
    margin: auto;
}

/* Style for buttons */
.btn-primary-login-modal {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary-login-modal:hover {
    background-color: #0056b3;
    /* Darker shade on hover */
}