You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
EvoLyte/public/css/register.css

89 lines
1.8 KiB

body {
background-color: #314e57 !important;
font-family: 'Georgia', serif;
text-align: center;
}
.register-container {
background-color: #3b6068;
border: 4px solid #000;
border-radius: 15px;
padding: 40px 30px;
margin: 60px auto;
width: 90%;
max-width: 400px;
box-shadow: 0 0 30px rgba(0,0,0,0.6);
color: #f8f5e0;
font-family: 'Georgia', serif;
}
.register-title {
font-size: 2.5rem;
color: #f8b435;
margin-bottom: 20px;
text-shadow: 2px 2px 4px #000;
}
.register-form label {
text-align: left;
color: #f8f5e0;
font-weight: bold;
}
.register-form input[type="text"],
.register-form input[type="password"] {
padding: 10px;
border: 2px solid #000;
border-radius: 6px;
background-color: #f2e6c9;
font-family: 'Georgia', serif;
font-size: 1rem;
box-shadow: inset 2px 2px 5px rgba(0,0,0,0.2);
width: 100%;
margin-bottom: 15px;
}
.btn-register-submit {
background-color: #f8b435;
color: #000;
font-weight: bold;
border: 3px solid #000;
padding: 10px;
border-radius: 8px;
font-size: 1.2rem;
cursor: pointer;
box-shadow: 3px 3px 0 #000;
transition: transform 0.2s ease;
width: 100%;
margin-bottom: 20px;
}
.btn-register-submit:hover {
transform: scale(1.05);
background-color: #e09f30;
}
.already-account {
color: #f8f5e0;
font-size: 0.95rem;
}
.btn-login-link {
display: inline-block;
margin-top: 10px;
background-color: #f2e6c9;
color: #000;
border: 2px solid #000;
padding: 8px 20px;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
box-shadow: 2px 2px 0 #000;
transition: transform 0.2s ease;
}
.btn-login-link:hover {
transform: scale(1.05);
background-color: #e5d6b8;
}