Добро пожаловать в Matremail!
.auth-box {
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 30px;
width: 100%;
max-width: 400px;
}
.auth-title {
text-align: center;
margin-bottom: 24px;
color: #333;
font-size: 24px;
}
.auth-form {
display: flex;
flex-direction: column;
}
.form-group {
margin-bottom: 16px;
}
.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: #555;
}
.form-group input {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 16px;
transition: border-color 0.3s;
}
.form-group input:focus {
border-color: #4a90e2;
outline: none;
}
.auth-button {
background-color: #4a90e2;
color: white;
border: none;
padding: 12px;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
margin-top: 8px;
}
.auth-button:hover {
background-color: #3a7bc8;
}
.auth-links {
display: flex;
justify-content: space-between;
margin-top: 16px;
}
.auth-link {
color: #4a90e2;
text-decoration: none;
font-size: 14px;
}
.auth-link:hover {
text-decoration: underline;
}
@media (max-width: 480px) {
.auth-box {
padding: 20px;
}
}