Files
Analytrick/css/Mains/Login_main.css
T
RatixForever 4c8088ecc6 ADD:
- Added a css file for standart css
- Added a css file for Header and Footer and php file for updating after login is sucessfull
- Added a css file for the Main Content
- Added a css file for SingUP page and PHP file for handling Singin
- Added a css file for Dashboard page and PHP for the dynamic page solution
- Added a css file for 404 page
- Added a css file for Login page and PHP file for handling Login
- Added a css file for Terms and Privacy page
- Added a css file for Prices content
2025-07-01 08:38:28 -03:00

136 lines
2.1 KiB
CSS

:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
.Destacado {
color: var(--color-Accent);
text-decoration: none;
}
.container {
max-width: 80%;
align-items: center;
margin: 0 auto;
justify-content: center;
}
.margintop {
margin-top: 20px;
}
.gap {
gap: rem;
}
.marginbottom {
margin-bottom: 20px;
}
.alignitems {
align-items: center;
justify-content: center;
}
.texto {
width: 350px;
max-width: 100%;
font-size: 20px;
}
* {
box-sizing: border-box;
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: var(--color-background-Light);
width: 100%;
height: 100%;
}
#Dashboard_img {
display: block;
max-width: 100%;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
#logo_icon {
display: block;
margin: 0 auto 0 auto;
max-height: 75%;
max-width: 80%;
}
.login_area {
margin-top: 100px;
margin-bottom: 100px;
justify-content: center;
display: flex;
align-items: center;
flex-direction: column;
background-color: var(--color-Primary-Light);
border-radius: 28px;
padding: 20px 50px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
max-width: 1000px;
width: 80%;
margin-left: auto;
margin-right: auto;
}
.register_inputs {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
}
.Inputbox {
outline: none;
height: 50px;
max-width: 550px;
width: 80%;
border-radius: 8px;
padding-left: 10px;
box-sizing: 1px;
margin-top: 40px;
border: 1px solid var(--color-Accent);
background-color: var(--color-background-Light);
}
.Button {
text-decoration: none;
font-weight: bold;
border: none;
line-height: 35px;
padding: 5px 20%;
border-radius: 28px;
cursor: pointer;
color: #333;
background-color: var(--color-Accent);
transition: background-color 0.3s ease;
}
.Button:hover {
background-color: var(--color-Accent-darker);
}