body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f5f5f5;
}

[v-cloak] {
    display: none;
}

img{
  margin-bottom: 25px;
    width: 60%;
}

.container {
  width: 360px;
}

.container-register {
  width: 550px;
}

.login-form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
    color: #333333;
    font-size: 23px;
    font-weight: 600;
    text-transform: uppercase;
}

.form-group {
  margin-bottom: 20px;
}

label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #8b8b8b;
    margin-top: 10px;
    padding: 3px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #cccccc;
  transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #4CAF50;
}

button[type="submit"] {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #040404;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  opacity: 0.7;
}

.button-container {
  text-align: center;
  margin-top: 20px;
}

.button-container a {
  text-decoration: none;
  color: #666666;
}

.button-container a:hover {
  color: #4CAF50;
}

.form-section h3 {
  font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 30px;
}

@media screen and (max-width: 991px) {
  body {
    margin: 50px 10px;
    height: auto;
  }
}