 body {

     background-color: #38679a;
     transition: background-color 0.3s ease;
     justify-content: center;
     align-items: center;
     height: 100vh;
     margin: 0;
 }

 .login-container {
     width: 30%;
     background-color: #ffffff;
     padding: 20px;
     border-radius: 8px;
     box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
 }


 #login-form {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .input-group {
     margin-bottom: 15px;
 }

 input[type="text"],
 input[type="password"] {

     padding: 10px;
     border-radius: 5px;
     border: 1px solid #ddd;
 }

 button {
     padding: 10px 20px;
     background-color: #38679a;
     color: #fff;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     border-radius: 4px;
 }

 button:hover {
     background-color: #357AE8;
 }

 .container-first {


     display: flex;
     justify-content: center;
     /* Yatay ortala */
     align-items: center;
 }

 .google-login {
     background-color: #38679a;
     /* Google'ın mavi rengi */
     color: white;
     padding: 10px 20px;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     font-size: 16px;
     transition: background-color 0.3s ease;
     border-radius: 60px;
 }

 .google-login:hover {
     background-color: #357AE8;
     /* Hafifçe daha koyu bir mavi tonu */
 }

 .google-login:focus {
     outline: none;
     /* Butona odaklandığında mavi çerçeve kaldırılır */
     box-shadow: 0 0 5px rgba(66, 133, 244, 0.5);
     /* Butona odaklandığında hafif bir gölge eklenir */
 }