body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    margin-left: 12%;
}

.sidebar {
    width: 27%;
    background-color: none;
    padding: 20px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #023020;
}

h1{
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    color: #023020;
    margin: 0px 0px 1% 17%;
}

.form-group {
    margin: 2px;
    margin-left: 17%;
    width: 68%
}

.form-group label {
    font-weight: normal;
    color: #023020;
    font-size: 12px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="password"] {
    width: 135%;
    padding: 9px;
    border: 1px solid #ccc;
    border-radius: 15px;
    background-color: #ececec;
}

.form-group .group_for_flnames {
    display: flex;
    align-items: center;
}

.form-group .name_group {
    padding-right: 10px;
}

.form-group .name_group label {
    font-weight: normal;
    color: #023020;
    font-size: 12px;
    font-weight: bold;
    display: block; 
}

.form-group .name_group input[type="text"] {
    width: 30vh;
    padding: 9px;
    border: 1px solid #ccc;
    border-radius: 15px;
    background-color: #ececec;
}

.name_group input[type="date"] {
    width: 100%;
    padding: 8px 17px;
}

.form-group.button {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 0 17%;
    width: 95%;
}

.form-group.button a,
.form-group.button button {
    background-color: #023020;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 12px;
    cursor: pointer;
}

.sidebar img {
    max-width: 80%; 
    height: auto;
    margin-bottom: 20px;
}

.password_input {
    position: relative;
}

.password_input i {
    position: absolute;
    top: 50%;
    right: -110px;
    transform: translateY(-50%);
    cursor: pointer;
}
.material-symbols-outlined{
  font-size: 18px;
  color: #585858;
}