﻿/* custom-form.css */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-control {
    border: none;
    border-bottom: 2px solid #ced4da;
    border-radius: 0;
    box-shadow: none;
}

    .form-control:focus {
        border-bottom-color: #007bff;
        box-shadow: none;
    }

label {
    position: absolute;
    top: 0;
    left: 0;
    color: #6c757d;
    transition: all 0.2s ease-in-out;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
    font-size: 12px;
    top: -20px;
    color: #007bff;
}

