Template Login Coletanea ICM
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Template Login Coletanea ICM</title>
<style>
body {
margin: 0;
font-family: "Times New Roman", serif;
background: linear-gradient(#cfe6b8, #b9d99d);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
width: 420px;
background: linear-gradient(#cfe6b8, #b9d99d);
padding: 30px;
text-align: center;
border-radius: 10px;
box-shadow: 0 0 30px rgba(0,0,0,0.2);
}
h1 {
margin: 0;
font-size: 48px;
letter-spacing: 4px;
font-weight: normal;
}
.sub {
font-size: 20px;
margin-top: 5px;
}
.title2 {
margin: 30px 0 20px;
font-size: 26px;
}
/* CÍRCULO CENTRAL */
.circle {
width: 240px;
height: 240px;
margin: auto;
border-radius: 50%;
background: radial-gradient(circle at top, #3b5d85, #1b2c40);
display: flex;
align-items: center;
justify-content: center;
box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}
/* LOGIN */
.login-box {
width: 160px;
}
.login-box input {
width: 100%;
padding: 6px;
margin: 5px 0;
border: none;
border-radius: 4px;
font-size: 12px;
}
.login-box button {
width: 100%;
padding: 6px;
margin-top: 6px;
background: #c0392b;
border: none;
color: white;
font-weight: bold;
border-radius: 4px;
cursor: pointer;
transition: 0.3s;
}
.login-box button:hover {
background: #e74c3c;
}
/* TEXTOS INFERIORES */
.bottom-title {
margin-top: 25px;
font-size: 28px;
letter-spacing: 3px;
}
.bottom-sub {
font-size: 14px;
letter-spacing: 2px;
}
.footer {
margin-top: 30px;
font-size: 18px;
letter-spacing: 4px;
}
</style>
</head>
<body>
<div class="container">
<h1>MARANATA</h1>
<div class="sub">O Senhor Jesus Vem!</div>
<div class="title2">Aleluia e Glória ao Rei</div>
<!-- CIRCULO COM LOGIN -->
<div class="circle">
<div class="login-box">
<input type="text" placeholder="Login">
<input type="password" placeholder="Senha">
<button onclick="entrar()">Entrar</button>
</div>
</div>
<div class="bottom-title">Coletânea de Hinos</div>
<div class="bottom-sub">Distribuição Interna</div>
<div class="footer">EDIÇÃO 2018</div>
</div>
<script>
function entrar(){
alert("Verificando acesso...");
}
</script>
</body>
</html>