﻿/* Custom form styles */
.formclass {
    background-color: #fff;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    /*margin-bottom: -50px;
    margin-top: 30px;*/
}

body {
    background-color: #f4f4f4;
    margin-bottom: 45px !important;
}

.form-floating {
    position: relative;
    margin-bottom: 1rem;
    margin-top: 20px;
    border-radius: 20px;
}

.form-floating input.form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem;
}

.form-floating label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    transition: transform .3s ease-out, opacity .3s ease-out;
    pointer-events: none;
}

.form-floating input.form-control:focus~label,
.form-floating input.form-control:not(:placeholder-shown)~label {
    transform: translateY(-1rem) scale(0.85);
    opacity: 0.7;
}

/* user.css */
.profile-container {
    margin-top: 20px;
    /* Add more container-specific styles if necessary */
}

.profile-update {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#registerSubmit {
    display: block;
    width: 60%;
    padding: 10px 20px;
    margin-top: 40px;
    margin: auto;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    background-color: #00b451;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

    #registerSubmit:hover {
        background-color: #d5f267;
    }

#buttonSave {
    display: block;
    width: 60%;
    padding: 10px 20px;
    margin-top: 25px;
    margin: auto;
    font-size: 16px;
    border: none;
    border-radius: 25px;
    background-color: #00b451;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

    #buttonSave:hover {
        background-color: #d5f267;
    }


/* Add more specific styles for elements within the profile form as needed */

