82 lines
1.5 KiB
CSS

.page-container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.register-wrapper {
max-width: 400px;
width: 100%;
padding: 30px;
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.content-wrapper {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 40px 20px;
}
.registration-container {
max-width: 400px;
margin: 60px auto;
padding: 30px;
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.registration-container h2 {
text-align: center;
margin-bottom: 20px;
font-size: 1.8em;
}
.registration-container input[type="text"],
.registration-container input[type="email"],
.registration-container input[type="password"] {
width: 100%;
padding: 10px 12px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 8px;
font-size: 1em;
box-sizing: border-box;
}
.register-link {
text-align: center;
font-size: 14px;
margin-top: 5px;
}
.register-link a {
color: #ff6600;
text-decoration: none;
font-weight: 500;
}
.register-link a:hover {
text-decoration: underline;
}
.register-btn {
width: 100%;
padding: 12px;
background: #ff6600;
color: white;
border: none;
border-radius: 25px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s ease;
}