@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    background: #eee;
    margin: 0;
    padding: 60px 0;
    font-family: 'Roboto', sans-serif;
}

* {
    box-sizing: border-box;
}

.install-form {
    padding: 20px 30px;
    background: #fff;
    box-shadow: 0px 5px 25px rgba(0,0,0,.1);
    max-width: 620px;
    margin: auto;
    border-radius: 15px;
}

.install-form__title {
    font-size: 16px;
    color: #999;
    margin-bottom: 2px;
}

.install-form__sub-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

input[type="text"],
input[type="password"],
textarea {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px 15px;
    font-size: 16px;
    width: 100%;
    border-radius: 5px;
    outline: none;
}

.required {
    color: red;
}

table {
    width: 100%;
}

table tr td:first-child {
    padding-right: 5px;
}

table tr td:last-child {
    padding-left: 5px;
}

table tr td {
    padding: 10px 0;
    width: 50%;
    border-bottom: 1px solid #eee;
}

.install-form__footer {
    padding-top: 20px;
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
}

button,
input[type="button"],
input[type="submit"] {
    font-family: 'Roboto', sans-serif;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: top;
    font-weight: 400;
    background: #3330E4;
    color: #fff;
}
button svg,
input[type="button"] svg,
input[type="submit"] svg {
    width: 20px;
}
.install-form__back {
    background: #eee;
    color: #666;
}

.install-form__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.install-form__indicator {
    font-size: 12px;
    width: 120px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    position: relative;
    color: #999;
}

.install-form__indicator.this-active {
    color: #3330E4;
}

.install-form__indicator.this-active:before {
    border: 4px solid #3330E4 !important;
}

.install-form__indicator.this-active:after {
    background: #3330E4 !important;
}

.install-form__indicator.this-previous {
    color: #3330E4 !important;
    opacity: .6;
}

.install-form__indicator.this-previous:before {
    border: 4px solid #3330E4 !important;
    opacity: .6;
}

.install-form__indicator.this-previous:after {
    background: #3330E4 !important;
    opacity: .6;
}

.install-form__indicator:before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: transparent;
    border: 4px solid #ccc;
    border-radius: 32px;
    z-index: 2;
}

.install-form__indicator:not(:first-child):after {
    content: '';
    display: block;
    width: 94px;
    height: 2px;
    top: 12px;
    position: absolute;
    background: #ccc;
    left: -47px;
    z-index: 1;
}

.danger-alert {
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    border-radius: 5px;
    line-height: 150%;
}

.templates-list {
    display: flex;
    flex-wrap: wrap;
}

.templates-list__item {
    width: 33.3333333333333%;
    padding: 10px;
    display: block;
}

.templates-list__inset {
    border: 2px solid #eee;
    display: block;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    padding: 5px;
    cursor: pointer;
}

.templates-list__item input[type="radio"]:checked ~ .templates-list__inset {
    color: #3330E4;
    border-color: #3330E4;
}

.templates-list__name {
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    display: block;
    padding: 10px 10px 5px;
    text-overflow: ellipsis;
}

.templates-list__item input {
    position: absolute;
    top: -100vh;
}

.templates-list__image {
    display: block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.templates-list__image:after {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 100%;
}

.templates-list__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.install-form__content {
    color: #444;
    font-size: 16px;
    line-height: 160%;
}