* {
    font-family: raleway,sans-serif
}

html {
    background-color: #eee;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0
}

section {
    width: 440px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 4px 4px 4px #ddd;
    padding-bottom: 40px
}

@media(max-width: 575px) {
    section {
        width:390px
    }
}

section .card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

section .card img {
    width: 100%;
    margin-bottom: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    animation: opacityChanger 5s ease 0s infinite;
    -webkit-animation: opacityChanger 5s ease 0s infinite
}

@keyframes opacityChanger {
    0% {
        opacity: 1
    }

    50% {
        opacity: .9
    }

    100% {
        opacity: 1
    }
}

section .card .info {
    text-align: center
}

section .card .info h1 {
    color: #444;
    letter-spacing: 1px;
    margin: 3px 0
}

section .card .info p {
    color: #666
}

section .card .info form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0
}

section .card .info form input[type=email],section .card .info form input[type=text] {
    width: 95%;
    color: #555;
    font-weight: 600;
    font-size: 15px;
    padding: 10px;
    box-sizing: border-box;
    margin: 5px 0;
    border: 1px solid #aaa;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: width .3s ease;
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    -ms-transition: width .3s ease;
    -o-transition: width .3s ease
}

section .card .info form input[type=email]::placeholder {
    font-size: 15px;
    font-weight: 500
}

section .card .info form input[type=text]::placeholder {
    font-size: 15px;
    font-weight: 500
}

section .card .info form input[type=email]:focus {
    outline: 0;
    width: 100%
}

section .card .info form input[type=text]:focus {
    outline: 0;
    width: 100%
}

section .card .info form input[type=submit] {
    margin-top: 20px;
    background-color: #222;
    padding: 10px;
    color: #fff;
    font-weight: 500;
    width: 40%;
    border: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
    letter-spacing: .5px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

section .card .info form input[type=submit]:hover {
    letter-spacing: 1.5px;
    background-color: #f27a24
}

section .card .info form input[type=submit]:focus {
    outline: 0
}

.btn {
    color: #555;
    background-color: #dfdfdf;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    margin: 0;
    cursor: pointer
}

.pass__modal {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000b5;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.pass__inner_modal {
    width: 440px;
    height: auto;
    background: white;
    border-radius: 8px;
    padding: 47px 12px;
    margin: auto;
    animation: anim_ 300ms cubic-bezier(0, 0.54, 0.49, 0.45) 1 forwards;
    transform: scale(0.5);
}

@keyframes anim_ {
    0% {
        transform: scale(0.5);
    }
    100% {
        transform: scale(1);
    }
}

.pass__inner_modal span.title {
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.pass__inner_modal span.message {
    display: block;
    text-align: center;
    font-weight: bold;
    color: #545454;
}

.pass__inner_modal button {
    display: block;
    padding: 10px 48px;
    background: #7cd1f9;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    margin: 10px 4px 1px 5px;
}

.pass__inner_modal button:focus {
    border: 2px solid #c5edff;
}

.pass__inner_modal h2 {
    text-align: center;
    color: #263e4c;
    margin: 12px 0;
    padding: 0;
}

.cross-icon {
    border-radius: 50%;
    overflow: hidden;
    width: 80px;
    height: 80px;
    margin: auto;
    display: flex;
    border: 5px solid #e91e63;
    align-items: center;
    justify-content: center;
}

.cross-icon .line1,
.cross-icon .line2 {
    width: 0%;
    height: 4px;
    background-color: #e91e63;
    display: block;
    border-radius: 10px;
    animation: lineFadeCross 300ms ease-in forwards 1;
}

@keyframes lineFadeCross {
    0% {
        width: 0%;
    }
    100% {
        width: 50%;
    }
}

button,
input {
    outline: none;
}

.cross-icon .line1 {
    transform: rotate(45deg) translate(16px, -16px);
}

.cross-icon .line2 {
    transform: rotate(-45deg) translate(-13px, -12px);
}

.good-icon {
    border-radius: 50%;
    overflow: hidden;
    width: 80px;
    height: 80px;
    margin: auto;
    display: flex;
    border: 5px solid #1ebee9;
    align-items: center;
    justify-content: center;
}

.good-icon .line1,
.good-icon .line2 {
    width: 50%;
    height: 4px;
    background-color: #1ebee9;
    display: block;
    border-radius: 10px;
}

.good-icon .line1 {
    width: 24%;
    animation: lineFade 300ms ease-in forwards 1;
    transform: rotate(45deg) translate(12px, -3px);
}

.good-icon .line2 {
    transform: rotate(-45deg) translate(0px, -1px);
}

@keyframes lineFade {
    0% {
        width: 0%;
    }
    100% {
        width: 24%;
    }
}

@media (max-width: 500px) {
    .pass__wrapper {
        width: 90%;
    }
    .pass__top {
        height: 123px;
    }
    .pass__mid h2 {
        margin-top: 62px;
        font-size: 21px;
    }
}

@media (max-width: 390px) {
    .pass__mid h2 {
        margin-top: 35px;
        font-size: 24px;
    }
}

.file-info {
    padding: 0 15px;
    line-height: 1.6;
}
