* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: white;
}
body {
    background: #302d2d;
}
.wrapper {
    width: 800px;
    margin: 40px auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    background: #232121;
    gap: 40px;
    padding: 20px;
}
article {
    background: #2c2c2c;
    border-radius: 10px;
    padding: 15px 35px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
h2 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: white;
}
input {
    background-color: #444;
    color: white;
    border-radius: 5px;
    padding: 10px 10px 10px 35px;
    border: none;
    width: 100%;
    box-sizing: border-box;
}
input::placeholder {
    color: gray;
}
a {
    color: white;
}
a:hover {
    color: #b8b7b7;
}
.text_img {
    position: relative;
    display: inline-block;
}
.text_img img {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
.main_btn{
    background-color: #ff4747;
    padding: 10px 60px;
    border: none;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}
.nick {
    display: flex;
    column-gap: 18px;
    row-gap: 10px;
}
.logg{
    height: fit-content;
}
span{
    margin: 0 auto;
}