:root {
  --deep-blue: #003366;
  --black: #000000;
  --silver: #c0c0c0;
  --title-font: "Roboto", sans-serif;
}

body {
  margin: 0;
  font-family: var(--title-font);
  background-color: var(--black);
  color: var(--silver);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  /* background: url('/images/background/1.webp') no-repeat center center fixed; */
  background-size: cover;
  
}

.container {
  max-width: 600px;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  
}

h1 {
  margin-bottom: 20px;
  color: var(--deep-blue);
}

p {
  color: var(--silver);
  margin: 10px 0;
  
}

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

input {
  width: 100%;
  padding: clamp(10px, 2vw, 15px);
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: clamp(10px, 2vw, 12px);
  background-color: var(--deep-blue);
  border: none;
  border-radius: 5px;
  color: var(--silver);
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 10px 0;
  font-family: var(--title-font);
}

button:hover {
  background-color: #002244; /* Darker shade of deep blue */
}

.social-login {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-login button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0;
}

.social-login i {
  margin-right: 10px;
}
a{
  text-decoration: none !important;
}

.link {
  margin-top: 10px;
}

.link a {
  color: var(--deep-blue);
  text-decoration: none;
}

.link a:hover {
  text-decoration: underline;
}

.terms {
  margin-top: 20px;
  font-size: 12px;
}

.terms a {
  color: var(--deep-blue);
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 20px;
  font-size: 12px;
  color: #666;
}

.main-section {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  font-family: var(--title-font);
}

.account {
  width: 100%;
  max-width: 700px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--title-font);
  
  
}
.div-img {
  width: 100%;
  max-width: 100%;
}
.div-img img {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 600px) {
  .div-img {
    display: none;
  }
}
