* {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(ffxiv2.jpg);
}

.login {
  display: flex;
  border: 1px solid black;
  height: 300px;
  width: 300px;
  border-radius: 10%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 30px;
  gap: 10px;
  margin-left: 90px;
}

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

input {
    height: 50px;
    border-radius: 10%;
    font-size: 20px;
    background-color: rgb(240, 248, 255);
    border-width: 4px;
    border-color: black solid;
    padding: 0px 10px;
}

.btn1 {
    font-size: 30px;
    border-radius: 10%;
    width: 200px;
    background-color: red;
    color: aliceblue;
    border-color: red;
    cursor: pointer;
    
}

.img1{
    height: 150px;
    display: flex;
    justify-content: center;
}
