/* style.css - mostly empty */ 

html, body {
  height: 100dvh;
  min-height: 100dvh;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  background: #000d1a;
  font-family: 'Inter', Arial, sans-serif;
  color: #fff;
}

.login-container {
  margin: 2.5vh 2vw;
  max-width: 350px;
  width: 100%;
  background: rgba(20, 24, 36, 0.95);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .login-container {
    margin: 3vh 2vw;
    padding: 2rem 1rem 1.5rem 1rem;
    border-radius: 1rem;
    min-width: 0;
    max-width: 100vw;
    width: 100vw;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  }
}

.revolut-logo {
  width: 120px;
  margin-bottom: 1.5rem;
}

.welcome {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #b0b8c1;
  font-size: 1rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #b0b8c1 0%, #fff 20%, #b0b8c1 40%, #e0e0e0 60%, #b0b8c1 80%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: glitter 2s linear infinite;
  position: relative;
}

@keyframes glitter {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.brand {
  color: #4f55f1;
  font-weight: 600;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.input-group {
  display: flex;
  align-items: center;
  background: #191c1f;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.country-code {
  color: #b0b8c1;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.phone-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  flex: 1;
  padding: 0.5rem 0;
}

.continue-btn {
  background: #4f55f1;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.continue-btn:hover {
  background: #373be6;
}

.mybank-logo {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #4f55f1 40%, #6fa0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  font-family: 'Inter', Arial, sans-serif;
}

.flag-nl {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.5rem;
  border: 0px solid #e0e0e0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  vertical-align: middle;
} 