.col-2 {
    width: 20% !important;
}
.b-bottom {
    border-right: none !important;
    border-left: none !important;
    border-top: none !important;
    border-radius: 0px !important;
    box-shadow: none !important;
}
.form-container {
    max-width: 500px;
    width: 100%;
    padding: 50px 30px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.form-container h2 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    color: #333;
}
.form-group {
    position: relative;
}
.form-group input {
    width: 100%;
    /* height: 55px; */
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
.form-group textarea {
    width: 100%;
    /* height: 55px; */
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: border-color 0.3s ease;
}
.form-control {
    background-color: white !important;
}
.control-label {
    position: absolute;
    padding: 12px 0px 0px 10px;
    /* top: 10px; */
    font-size: 14px;
    color: #777;
    transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}
.form-group input:focus {
    border-color: #710d07;
    outline: none;
}
.form-group textarea:focus {
    border-color: #710d07;
    outline: none;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -6px;
    font-size: 12px;
    color: #710d07;
    background-color: #ffffff;
    padding: 0 4px;
    left: 18px;
}
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -6px;
    font-size: 12px;
    color: #710d07;
    background-color: #ffffff;
    padding: 0 4px;
    left: 18px;
}

.input-group-text {
    background-color: #ffffff !important;
}

input {
    border: 1px solid #ccc;
    transition: border-color 0.3s;
}
input:valid {
    border: 1px solid #ccc;
}
input:invalid {
    border: 2px solid rgb(248, 11, 11);
}
input:hover {
    border: 2px solid #000;
}
textarea {
    background-color: #ffffff !important;
    border: 1px solid #ccc;
    transition: border-color 0.3s;
}
textarea:valid {
    border: 1px solid #ccc;
}
textarea:invalid {
    border: 2px solid grey;
}
textarea:hover {
    border: 2px solid #000;
}

.border-r {
    border-radius: 6px;
}

.toggle-password {
    position: absolute;
    top: 20%;
    right: 14px;
    border: none !important;
}
