/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Форма */
form {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Поля формы */
form div {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
}

/* input, select, textarea из Django */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

/* Кнопка */
input[type="submit"] {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

input[type="submit"]:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Ссылка */
.login-link {
    display: block;
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
    color: #c02e2e;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    background-color: aqua;
}

.login-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

body { border: 10px solid red !important; }
