<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.wrap {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 300px;
}
.main-image {
background-image: url("https://cdn.pixabay.com/photo/2023/05/27/18/15/barn-swallows-8022044_1280.jpg");
background-position: center;
background-size: cover;
border-radius: 10%;
height: 300px;
width: 300px;
margin-bottom: 10px;
}
p {
margin-right: auto;
padding: 0;
margin-bottom: 10px;
margin-top: 10px;
}
.login-btn {
border: none;
background-color: brown;
color: aliceblue;
border-radius: 10px;
height: 40px;
width: 300px;
margin-top: 10px;
}
</style>
</head>
<body>
<main class="wrap">
<div class="main-image"></div>
<p>
ID :
<input type="text" />
</p>
<p>
PW :
<input type="text" />
</p>
<button class="login-btn">로그인 하기</button>
</main>
</body>
</html>