body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #f4f5f7 0%, #e9ebee 100%);
  color: #333;
}


.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 5rem;
}

.logo img {
  width: 8rem;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  animation: fadeInUp 0.6s ease-in-out;
}

.btn-blue {
  padding: 10px 20px;
  border: 2px solid #00c3ff;
  color: #00c3ff !important;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.btn-blue:hover {
  background: #00c3ff;
  color: white !important;
}

.btn-blue::after {
  display: none;
}

/* ===== Register Section ===== */
.register-section {
  margin-top: 120px; /* biar tidak ketutup nav */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.register-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.register-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

/* ===== Form Styling ===== */
.register-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  animation: fadeInUp 0.6s ease-in-out;
}

.register-form h2{
  font-size: larger;
}

.register-form label {
  text-align: left;
  font-weight: bold;
  color: #333;
}

.register-form input[type="text"],
.register-form input[type="file"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.register-form input[type="file"] {
  background: #fff;
  cursor: pointer;
}

.register-form input:focus {
  border-color: #00c3ff;
  outline: none;
}

/* ===== Button ===== */
.btn-register {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #00c3ff;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-register:hover {
  background: #0099cc;
}

/* Google Sign In Button */
.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: white;
  color: #333;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-google:hover {
  background: #f8f9fa;
  border-color: #4285f4;
  color: #4285f4;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
  transform: translateY(-2px);
}

.btn-google i {
  font-size: 20px;
}

/* Google Login Box - untuk halaman paksa Google */
.google-login-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 30px auto;
}

.btn-google-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: #4285f4;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-google-large:hover {
  background: #357ae8;
  color: white;
  box-shadow: 0 6px 16px rgba(66, 133, 244, 0.4);
  transform: translateY(-2px);
}

.btn-google-large i {
  font-size: 24px;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer a{
  color: #ffffff !important;
  text-decoration: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


