removi arquivos e mudei alguns nomes

This commit is contained in:
2025-08-04 04:57:16 -03:00
parent 01ea3dd765
commit 80b18038ad
3 changed files with 4 additions and 80 deletions

View File

@@ -4,9 +4,9 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Login e Registro</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="css/Login-e-Registro.css"/>
<link rel="stylesheet" href="css/base.css"/>
<link rel="stylesheet" href="css/base.css"/>
</head>
<body>
<div class="form-wrapper">
@@ -61,6 +61,6 @@
</div>
</div>
<script src="javascript/script.js"></script>
<script src="javascript/singForm.js"></script>
</body>
</html>
</html>

View File

@@ -1,76 +0,0 @@
.main-login{
width: 100vw;
height: 100vh;
background:linear-gradient(130deg, var(--bg-dark) 40%, var(--bg-light) 200%);
display: flex;
justify-content: center;
align-items: center;
.left-login{
width: 50vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
h1 {
color:white;
}
}
.right-login{
width: 50vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
}
.card-login{
width: 60%;
height: 60%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 30px 35px;
background: rgba(113, 113, 116, 0.11);
border-radius: 20px;
box-shadow: 0px 10px 60px #161616cc;
h1 {
color: white;
font-weight: 900;
margin: 0;
}
}
.textfield{
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.textfield > input {
width: 100%;
border: none;
border-radius: 10px;
padding: 15px;
background: rgba(142, 142, 153, 0.496);
color: white;
font-size: 12pt;
box-shadow: 0px 20px 10px #161616;
box-sizing: border-box;
}
.textfield > label {
color: white;
margin-bottom: 3px;
}