/**** Connecting fonts ****/
@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');

/**** Setting basics ****/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}
body {
    background-image: url(../images/redirecting-donate&panel/background.png) !important;
    background-size:cover;
    background-position: center;
    height: 100vh;
}

.header{
    height: auto !important;
}
.header__list{
    width: 100%;
    justify-content: center;
    margin: 10px 0px;
}
.header__logo-wrapper{
    width: 100%;
}
.header__logo-title{
    margin: 0;
    margin-left: 15px;
}

main {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 5px;
}

h1 {
    text-transform: uppercase;
    font-size: 44px;
    text-align: center;
    margin: 4vh 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-label {
    padding: 14px 20px;
    width: 30vw;
    background: #131521;
    border-radius: 5px;
    border: 1px solid #282C45;
    margin: 12px 0px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-label img {
    height: 45px;
}

.login-input {
    height: 100%;
    width: 84%;
    background: none;
    border: none;
    outline: none;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
}

.login-input::placeholder {
    color: #cdcdcd;
    opacity: 1;
}

.login-btn,
.login-btn {
    margin-top: 2vh;
    padding: 18px 30px;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .6px;
    background: linear-gradient(180deg, #15FD95 0%, #02D978 100%);
    box-shadow: 0px 3px 0px #008649;
    color: #0A0A14;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: .3s;
}

.login-btn:hover,
.login-btn:hover {
    background: linear-gradient(45deg, #02D978 0%, #15FD95 100%);
    box-shadow: 0px -3px 0px #008649;
    transform: scale(1.02);
    transition: .3s;
}


.success-tick-img{
    width: 9vw;
    height: 9vw;
    object-fit: cover;
    border-radius: 4.5vw;
    border: 2px solid #00863835;
    box-shadow: 2px 2px 6px #00864a77;
}
.success-title{
    margin-top: 5%;
    text-align: center;
}
.success-text{
    margin-top: 2%;
    font-size: 18px;
    text-align: center;
}


/**** ADAPTIVE STYLES ****/
@media screen and (max-width: 769px) {
    .login-label {
        width: 90vw;
    }
    h1 {
        font-size: 42px;
        margin-top: 8vh;
    }
}

@media screen and (max-width: 640px) {
    h1 {
        font-size: 36px;
        margin-top: 8vh;
    }

    .login-label img {
        height: 32px;
    }

    .login-btn,
    .login-btn {
        font-size: 27px;
    }
}