
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Barlow', sans-serif;
}

@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: local('Barlow'), local('Barlow-Regular'),
       url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&display=swap');
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/bg.jpg') no-repeat center center/cover;
  z-index: -2;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: -1;
}

.rdirect-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.logo {
  width: 60px;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 2rem;
}

.rdirect-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00ffe0;
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.login-button:hover {
  background: #00cbb7;
}

.ex-icon {
  color: black;
  border-radius: 50%;
  width: 154px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-weight: bold;
}
