@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    background-origin: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
body {
    background: linear-gradient(330deg, transparent 0%, rgba(231,191,180,0.25) 100%),
    linear-gradient(230deg, transparent 0%, rgba(203,223,239,0.95) 100%),
    linear-gradient(215deg, rgb(242,216,212) 0%, rgb(187,238,235) 35%, rgb(140,177,225) 100%);
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    border-radius: 20px;
}

.main-container .content {
    background-color: rgb(245, 245, 245);
    padding: 10px 30px 30px;
    position: relative;
    min-height: 70vh;
    border-radius: 20px 0px 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;    
}

.main-container .banner {
    background-image: url('/static/base/img/СоваРегистрация.png');
    background-position: center;
    background-size: cover;
    border-radius: 0px 20px 20px 0px;
}

.main-container .banner h2 {
    text-align: center;
    color: #FECC00;
    font-weight: 600;
    margin-top: 30px;
    font-size: 32px;
}

.content h1 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content > p {
    text-align: center;
    max-width: 80%;
    
    margin: 0 auto 30px;
}

.content .logo {
    margin: 0 auto;
    width: 150px;
}
.content .logo img{
    width: 100%;
}

.content form p {
    width: 100%;
}
.content form p label {
    width: 100%;
    display: block;
    margin-bottom: 3px;
}
.content form p label[for='id_remember'] {
    display: block;
    width: 150px;
    float: left;
}

.content form p input {
    box-sizing: border-box;
    width: 100%;
    padding: 5px;
    margin-bottom: 15px;
    border: 1px solid rgb(133, 133, 133);
    box-shadow: 0px 0px 10px -5px rgba(34, 60, 80, 0.6) inset;
    font-size: 16px;
}

.content form p input[type='checkbox']{
    width: auto;
}

.content form button {
    padding: 10px 15px;
    border: none;
    background-color: #232220;
    font-size: 20px;
    box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
    width: 100%;
}
.content .secondaryAction {
    display: block;
}

.messages_list {
    position: absolute;
    bottom: 0;
    left: 0;
}
.messages_list ul {
    list-style: none;
    margin: 20px;
    padding: 0;
}
.messages_list ul li {
    background-color: rgba(255,255,255,0.7);
    padding: 10px;
    max-width: 70%;
    width: 600px;
    margin-top: 15px;
    border-radius: 10px; 
}

.banner {
    position: relative;
}
.banner .social {
    list-style: none;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
}

.banner .social li {
    padding: 0 10px;
}
.banner .social li a {
    color: #FECC00;
    font-size: 32px;
}