*{
   padding: 0;
   margin: 0;
   box-sizing: border-box;
   font-family: "ROBOTO", san serif;
}

body{
    background-color: #fff;
}

.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 10px;
    
    background-color: white;
    padding: 30px;
    box-shadow: 0 0 50px darkslategray;
}

.container .myform {
    width: 270px;
    margin-right: 30px;
}

.container .myform h1{
    Color: #1c1c1e;
    margin-bottom: 20px;
}

.container .myform input{
    border: none;
    outline: none;
    border-radius: 0;
    width: 100%;
    border-bottom: 2px solid #1c1c1e;
    margin-bottom: 25px;
    padding: 7px 0;
    font-size: 14px;
}

.container .myform button{
    color: black;
    background-color: white;
    border: 1px solid #d3d3d3;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.12); /* Light drop shadow */
    transition: all 0.3s ease;
    outline: none;
    border-radius: 2px;
    font-size: 14px;
    padding: 12px 12px;
    font-weight: 500;
    cursor: pointer;
}

.container .image img{
    width: 300px;
    background-color: #7ABF44;
}
.btn-custom {
  background-color: white; /* Bootstrap info */
  color: white;
  border: 1px solid #d3d3d3; /* Light gray border */
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.12); /* Light drop shadow */
  transition: all 0.3s ease;
}

/* Icon color inside button */
.btn-custom i {
  color: #808080;
  transition: color 0.3s ease;
}

/* Hover state */
.btn-custom:hover {
  background-color: #f8f9fa; /* Light gray background */
  color: black;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow */
}

.btn-custom:selected {
  background-color: #f8f9fa; /* Light gray background */
  color: black;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.15); /* Slightly stronger shadow */
}

/* Icon color on hover */
.btn-custom:hover i {
  color: black;
}