diff --git a/frontend/src/App.css b/frontend/src/App.css
deleted file mode 100644
index b9d355d..0000000
--- a/frontend/src/App.css
+++ /dev/null
@@ -1,42 +0,0 @@
-#root {
- max-width: 1280px;
- margin: 0 auto;
- padding: 2rem;
- text-align: center;
-}
-
-.logo {
- height: 6em;
- padding: 1.5em;
- will-change: filter;
- transition: filter 300ms;
-}
-.logo:hover {
- filter: drop-shadow(0 0 2em #646cffaa);
-}
-.logo.react:hover {
- filter: drop-shadow(0 0 2em #61dafbaa);
-}
-
-@keyframes logo-spin {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
-}
-
-@media (prefers-reduced-motion: no-preference) {
- a:nth-of-type(2) .logo {
- animation: logo-spin infinite 20s linear;
- }
-}
-
-.card {
- padding: 2em;
-}
-
-.read-the-docs {
- color: #888;
-}
diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx
deleted file mode 100644
index 5c4531b..0000000
--- a/frontend/src/App.jsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import './App.css'
-import LoginForm from './LoginForm'
-
-function App() {
- return (
- <>
-
-
- >
- )
-}
-
-export default App
diff --git a/frontend/src/LoginForm.css b/frontend/src/LoginForm.css
index f478c3c..e74cc31 100644
--- a/frontend/src/LoginForm.css
+++ b/frontend/src/LoginForm.css
@@ -1,26 +1,27 @@
/* POPPINS FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
-*{
+.body-login{
+ background: url("fondo_pasteles.jpg");
+ background-size: 100%;
+ background-repeat: no-repeat;
+ overflow: hidden;
+ background-attachment: fixed;
+ display: flex;
+ height: 100%;
+ position: relative;
+ justify-content: center;
margin: 0;
padding: 0;
- box-sizing: border-box;
- font-family: 'Poppins', sans-serif;
-}
-body{
- background: url("fondo_pasteles.jpg");
- background-size: cover;
- background-repeat: no-repeat;
- background-attachment: fixed;
- overflow: hidden;
}
+
.wrapper{
display: flex;
- justify-content: center;
+ width: 40%;
+ height: 100vh;
+ padding-left: 4px;
align-items: center;
- min-height: 80vh;
- border-radius: 4%;
- background: rgba(39, 39, 39, 0.5);
+ justify-content: center;
}
.link:hover, .active{
@@ -45,9 +46,11 @@ body{
align-items: center;
justify-content: center;
width: 512px;
- height: 420px;
+ height: 500px;
overflow: hidden;
z-index: 2;
+ border-radius: 4%;
+ background: rgba(39, 39, 39, 0.5);
}
.login-container{
position: absolute;
@@ -105,7 +108,7 @@ body{
color: #fff;
margin-left: 5px;
}
-header{
+.header-login{
color: #fff;
font-size: 30px;
text-align: center;
diff --git a/frontend/src/LoginForm.jsx b/frontend/src/LoginForm.jsx
index e56a2d5..bd8ee2f 100644
--- a/frontend/src/LoginForm.jsx
+++ b/frontend/src/LoginForm.jsx
@@ -1,6 +1,5 @@
import React, { useState } from 'react';
import './LoginForm.css';
-import './App.css'
function LoginForm() {
const [loginVisible, setLoginVisible] = useState(true);
@@ -24,106 +23,107 @@ function LoginForm() {
setLoginVisible(false);
setRegisterVisible(false);
};
-
-
+
return (
<>
-