* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ================================
   ЛОГОТИП
   ================================ */

.logo {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
}


/* ================================
   BODY
   ================================ */

body {
    font-family: Arial, sans-serif;
    background: #f3f4f6;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}


/* ================================
   CONTAINER
   ================================ */

.container {
    width: 100%;
    max-width: 420px;
}


/* ================================
   SCREENS
   ================================ */

.screen {
    display: none;
    width: 100%;
}

.screen.active {
    display: block;
}


/* ================================
   CARD
   ================================ */

.card {
    background: white;

    padding: 40px 35px;

    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    text-align: center;
}


/* ================================
   TITLE
   ================================ */

h1 {
    font-size: 28px;

    margin-bottom: 12px;

    color: #222;
}


/* ================================
   DESCRIPTION
   ================================ */

.description {
    color: #777;

    font-size: 16px;
    line-height: 1.5;

    margin-bottom: 30px;
}


/* ================================
   FORM
   ================================ */

form {
    display: flex;
    flex-direction: column;

    text-align: left;
}


/* ================================
   LABEL
   ================================ */

label {
    font-size: 14px;
    font-weight: bold;

    margin-bottom: 8px;

    color: #333;
}


/* ================================
   INPUT
   ================================ */

input {
    width: 100%;
    height: 48px;

    padding: 0 15px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 16px;

    outline: none;

    margin-bottom: 18px;
}

input:focus {
    border-color: #555;
}


/* ================================
   BUTTON
   ================================ */

button {
    width: 100%;
    height: 48px;

    border: none;
    border-radius: 8px;

    background: #222;
    color: white;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;
}

button:hover {
    background: #444;
}

button:active {
    transform: scale(0.98);
}


/* ================================
   SUCCESS
   ================================ */

.success {
    padding: 50px 30px;
}

.success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #222;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 36px;
}

.success h1 {
    margin-bottom: 15px;
}


/* ==================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ================================================== */

@media (max-width: 600px) {

    body {
        padding: 15px;
    }

    .container {
        max-width: 100%;
    }

    .card {
        padding: 32px 25px;
    }

    .logo {
        width: 160px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 25px;
    }

    .description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    input {
        height: 50px;
        font-size: 16px;
    }

    button {
        height: 50px;
        font-size: 16px;
    }
}


/* ==================================================
   МАЛЕНЬКИЙ ТЕЛЕФОН
   ================================================== */

@media (max-width: 380px) {

    body {
        padding: 10px;
    }

    .card {
        padding: 28px 18px;
        border-radius: 14px;
    }

    .logo {
        width: 140px;
    }

    h1 {
        font-size: 23px;
    }

    .description {
        font-size: 14px;
    }

    input {
        height: 48px;
    }

    button {
        height: 48px;
    }
}
```
```css
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* ================================
   ЛОГОТИП
   ================================ */

.logo {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
}


/* ================================
   BODY
   ================================ */

body {
    font-family: Arial, sans-serif;
    background: #f3f4f6;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;
}


/* ================================
   CONTAINER
   ================================ */

.container {
    width: 100%;
    max-width: 420px;
}


/* ================================
   SCREENS
   ================================ */

.screen {
    display: none;
    width: 100%;
}

.screen.active {
    display: block;
}


/* ================================
   CARD
   ================================ */

.card {
    background: white;

    padding: 40px 35px;

    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    text-align: center;
}


/* ================================
   TITLE
   ================================ */

h1 {
    font-size: 28px;

    margin-bottom: 12px;

    color: #222;
}


/* ================================
   DESCRIPTION
   ================================ */

.description {
    color: #777;

    font-size: 16px;
    line-height: 1.5;

    margin-bottom: 30px;
}


/* ================================
   FORM
   ================================ */

form {
    display: flex;
    flex-direction: column;

    text-align: left;
}


/* ================================
   LABEL
   ================================ */

label {
    font-size: 14px;
    font-weight: bold;

    margin-bottom: 8px;

    color: #333;
}


/* ================================
   INPUT
   ================================ */

input {
    width: 100%;
    height: 48px;

    padding: 0 15px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 16px;

    outline: none;

    margin-bottom: 18px;
}

input:focus {
    border-color: #555;
}


/* ================================
   BUTTON
   ================================ */

button {
    width: 100%;
    height: 48px;

    border: none;
    border-radius: 8px;

    background: #222;
    color: white;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;
}

button:hover {
    background: #444;
}

button:active {
    transform: scale(0.98);
}


/* ================================
   SUCCESS
   ================================ */

.success {
    padding: 50px 30px;
}

.success-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #222;
    color: white;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 36px;
}

.success h1 {
    margin-bottom: 15px;
}


/* ==================================================
   МОБИЛЬНАЯ ВЕРСИЯ
   ================================================== */

@media (max-width: 600px) {

    body {
        padding: 15px;
    }

    .container {
        max-width: 100%;
    }

    .card {
        padding: 32px 25px;
    }

    .logo {
        width: 160px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 25px;
    }

    .description {
        font-size: 15px;
        margin-bottom: 25px;
    }

    input {
        height: 50px;
        font-size: 16px;
    }

    button {
        height: 50px;
        font-size: 16px;
    }
}


/* ==================================================
   МАЛЕНЬКИЙ ТЕЛЕФОН
   ================================================== */

@media (max-width: 380px) {

    body {
        padding: 10px;
    }

    .card {
        padding: 28px 18px;
        border-radius: 14px;
    }

    .logo {
        width: 140px;
    }

    h1 {
        font-size: 23px;
    }

    .description {
        font-size: 14px;
    }

    input {
        height: 48px;
    }

    button {
        height: 48px;
    }
}
