/* body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: white;
    color: #333;
  }
  header {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }
  .welcome-text {
    font-size: 1.5rem;
    background: #f9f9f9;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    color: #555;
  }
  .login-btn {
    padding: 15px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(to right, #4CAF50, #2e7d32);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  .login-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  } */

  
/**********************************************
  1) RESET
**********************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**********************************************
  2) ΒΑΣΙΚΟ ΣΤΥΛ ΣΩΜΑΤΟΣ
**********************************************/
body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  color: #000;
  font-weight: bold; /* Όλα σε bold, εκτός από όσα ορίζουμε αλλιώς */
}

/**********************************************
  3) MAIN CONTAINER
**********************************************/
.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/**********************************************
  4) LOGO (ΠΡΟΑΙΡΕΤΙΚΟ)
**********************************************/
.logo-container {
  margin-bottom: 20px;
}
.logo-container img {
  max-width: 150px; 
  height: auto;
}

/**********************************************
  5) ΚΑΛΩΣΟΡΙΣΜΑ
**********************************************/
.welcome-text {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/**********************************************
  6) ΟΔΗΓΙΕΣ
**********************************************/
.instructions-text {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 25px;
  width: 80%;
  max-width: 600px;
}

/**********************************************
  7) ΛΕΥΚΟ ΠΛΑΙΣΙΟ 
     Με περίγραμμα #e3e2e2 & έντονη σκιά
**********************************************/
.white-box {
  background-color: #fff;
  width: 90%;
  max-width: 600px;
  padding: 30px 30px 40px 30px;
  border-radius: 30px;
  border: 1px solid #e3e2e2;  /* Ανοιχτό γκρι περίγραμμα */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/**********************************************
  8) ΤΙΤΛΟΣ ΣΥΝΔΕΣΗΣ
**********************************************/
.connection-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bolder;
}

/**********************************************
  9) ΚΟΥΜΠΙ GOOGLE
**********************************************/
.google-button {
  background: none;
  border: none;
  cursor: pointer;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin: 30px auto;
  padding: 0;
}

/* Γκρι πλαίσιο */
.google-icon-frame {
  width: 80px;
  height: 80px;

  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 25px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;

  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Εικόνα Google */
.google-icon {
  width: 36px;
  height: 36px;
}

/* Κείμενο “Google” - αρχικά γκρι (#777), κανονικό weight
   Στο hover -> απλώς μαύρο, ίδιο font-size (1rem), παραμένει normal */
.google-button span {
  font-size: 1rem;
  color: #777;
  font-weight: normal;
  margin-top: 10px;
  transition: color 0.2s ease;
}

/* Hover -> χρώμα #000, χωρίς bold */
.google-button:hover span {
  color: #000;
}

/* Hover στο πλαίσιο Google -> πιο σκούρο περίγραμμα, ανοιχτό γκρι background */
.google-button:hover .google-icon-frame {
  border-color: #ccc;
  background-color: #eee;
}

/**********************************************
  10) ΣΗΜΕΙΩΣΗ ΚΑΤΩ ΑΠΟ ΤΟ ΚΟΥΜΠΙ
**********************************************/
.note {
  font-size: 1.1rem;
  margin: 0;
}
