* {
    margin: 0%;
    padding: 0%;
    text-decoration: none;
    list-style-type: none;
}

    *::selection {
        color: #ff6a00;
        background-color: #ffffff;
    }

.text-orange::selection {
    background-color: #ff6a00;
    color: #ffffff;
}
body {
    background: linear-gradient(45deg, #ff6a00e3, #ee0978ef);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.fs-md {
    font-size: 18px;
}

.bg-black-col {
    background: linear-gradient(45deg, #ff6a00, #ee0979);
    justify-self: center;
    align-self: center;
    position: relative;
}

.input-box {
    border: 3px solid green;
    width: 310px;
    height: 30px;
    padding: 10px;
}

.heading {
    padding-top: 50px;
    padding-left: 48px;
    margin: 0px;
    text-transform: uppercase;
}

label {
    font-size: 20px;
    letter-spacing: 6px;
}

input:focus {
    outline: 2px solid #ee0979;
    background-color: #eef;
}

.submit-btn {
    width: 310px;
    height: 30px;
    transition: background-color 0.5s,color 0.5s;
}

    .submit-btn:hover {
        background-color: #ee0961;
        color: white;
    }

.submit-btn-G {
    padding: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s,color 0.5s;
    width: 280px;
    border: none;
}

    .submit-btn-G svg {
        height: 16px;
        width: 40px;
        fill: #f21e5f;
        transition: all 0.5s;
    }

    .submit-btn-G:hover {
        background-color: #ee0979;
        color: white;
    }

        .submit-btn-G:hover svg {
            fill: white;
        }
.main-div {
    padding: 0px 20px;
}


.error-msg {
    letter-spacing: 1px;
}

@media (min-width: 320px) {

    .logo-img {
        height: 230px;
        width: 257px;
    }

    .input-box,
    .submit-btn,
    .submit-btn-G {
        width: 257px;
    }

    .login-text {
        text-align: center;
    }
    
}

@media (min-width: 425px) {

    .logo-img {
        height: 230px;
        width: 329px;
    }

    .input-box,
    .submit-btn,
    .submit-btn-G {
        width: 329px;
    }

    .login-text {
        text-align: center;
    }
}

@media (min-width: 768px) {

    .logo-img {
        height: 460px;
        width: 296px;
    }

    .input-box,
    .submit-btn,
    .submit-btn-G {
        width: 280px;
    }

    .main-div {
        column-gap: 80px;
        padding: 0px 80px;
    }
}

@media (min-width: 992px) {

    .logo-img {
        height: 490px;
        width: 480px;
    }

    .input-box,
    .submit-btn,
    .submit-btn-G {
        width: 300px;
    }
}
.edit-btn {
    margin-left: 10px;
    font-size: 20px;
    cursor: pointer;
}