@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
/*@import url('https://fonts.cdnfonts.com/css/cocogoose');*/
@font-face {
  font-family: Cocogoose;
  src: url(/assets/css/CocogoosePro-Semilight.woff);
}


body {
    background-image: radial-gradient(circle, #005f5e 0%, #013f3e 100%);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding-top: 2%;
}
.password-container{
    width: 33%;
    position: relative;
    margin: 0 auto; /* Centers it horizontally */

}
.password-input {
    width: 100%;
    padding: 5px 15px;
    border-radius: 50px;
    border: none;
    font-size: 30px;
    font-family: "inherit";
}
.password-input[type="text"] {
    font-family: Cocogoose;
}
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #666;
}

.toggle-password:hover {
    color: #333;
}
/*.password-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #007bff;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease-in-out;
}*/

/* Default Highlight (First Field) */
.password-input:focus,
.password-input:active {
    border: none !important;
    outline: none !important;
    box-shadow: none;
}
/* Hide Focus Border */
.password-input:focus-visible {
    border: none !important;
    outline: none !important;
}

.feedback-box {
    display: inline-block;
    padding: 3px 45px;
    border-radius: 20px;
    margin: 5px;
}
.not-detected { background-color: #e84d56; color: white; }
.detected { background-color: #17b9ac; color: white; }
.crack-time { font-size: 30px; font-family: 'Cocogoose', sans-serif; }

.main-img{
    width: 40%;
}

.your-key{
    margin-top: 15px;
    font-family: Montserrat, Verdana;
    font-size: 14px;
    line-height: 16px;
}

.sample-password-title{
    font-family: Cocogoose;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0px !important;
}
.never-shared{
    font-size: 10px;
    font-family: Montserrat;
    color: #17b9ac;
    margin-top: 3px;
}
.take-about{
    font-family: Montserrat;
    font-size: 19px;
}

.time{
    font-family: Cocogoose;
    font-size: 30px;
}

.crack{
    font-size: 18px;
    font-family: Montserrat;
}
.margin-0{
    margin: 0px !important;
}

.cases{
    margin-top: 20px;
}

.case{
    font-size: 12px;
    font-family: Montserrat;
}
.match{
    font-size: 12px;
    font-family: Montserrat;
    font-weight: bold;
}
.footer {
    background-color: #17b9ac;
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 0;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 5px;
    }

.powered-by {
    font-size: 12px;
    font-family: Montserrat;
    margin-bottom: 0px;
}

.link-web, .link-web:hover, .link-web:active {
    font-family: Cocogoose;
    font-size: 12px;
    color: white;
    text-decoration: none;
}

.footer img {
    width: 10%;
    display: block;
    margin: 5px auto; /* Centers the image */
}

@media (min-width: 1400px) {
    body {
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centers vertically */
        align-items: center; /* Centers horizontally */
        min-height: 100vh; /* Ensures full viewport height */
        bottom: 0;
        margin-top: -6%; /* Adds 50px space from the top */
    }

}


@media (max-width: 999px) and (orientation: landscape) {
    .footer {
        background-color: #17b9ac;
        position: relative;
        text-align: center;
        width: 100%;
        bottom: 0;
        margin-top: 10px;
        padding-top: 10px;
        display: block;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) and (max-height: 650px) and (orientation: portrait) {
    .your-key {
        padding: 0px 15px;
    }
    .password-container {
        width: 75%;
    }
    .password-input {
        font-size: 16px;
    }
    .feedback-box {
        font-size: 14px;
        padding: 8px -4px;
        display: block;
        width: 70%;
        margin: 5px auto;
    }
    .crack-time {
        font-size: 24px;
    }

    .footer {
        background-color: #17b9ac;
        position: relative;
        text-align: center;
        width: 100%;
        bottom: 0;
        margin-top: 10px;
        padding-top: 10px;
        display: block;
        flex-direction: column;
        align-items: center;
    }

    .powered-by {
        font-size: 12px;
        font-family: Montserrat;
        margin-bottom: 0px;
    }
    .footer img {
        width: 32%;
        display: block;
        margin: 2px auto;
    }
    .main-img {
        width: 90%;
        padding-top: 5%;
    }
}

@media (max-width: 768px) and (min-height: 651px) and (orientation: portrait) {
    .your-key {
        padding: 0px 15px;
    }
    .password-container {
        width: 75%;
    }
    .password-input {
        font-size: 16px;
    }
    .feedback-box {
        font-size: 14px;
        padding: 8px -4px;
        display: block;
        width: 70%;
        margin: 10px auto;
    }
    .crack-time {
        font-size: 24px;
    }

    .footer {
        background-color: #17b9ac;
        position: absolute;
        text-align: center;
        width: 100%;
        bottom: 0;
        margin-top: 10px;
        padding-top: 10px;
        display: block;
        flex-direction: column;
        align-items: center;
    }

    .powered-by {
        font-size: 12px;
        font-family: Montserrat;
        margin-bottom: 0px;
    }
    .footer img {
        width: 32%;
        display: block;
        margin: 2px auto;
    }
    .main-img {
        width: 90%;
        padding-top: 5%;
    }
}

@media (max-width: 540px) and (max-height: 720px) and (orientation: portrait) {
    .your-key {
        padding: 0px 15px;
    }
    .password-container {
        width: 75%;
    }
    .password-input {
        font-size: 16px;
    }
    .feedback-box {
        font-size: 14px;
        padding: 8px -4px;
        display: block;
        width: 70%;
        margin: 10px auto;
    }
    .crack-time {
        font-size: 24px;
    }

    .footer {
        background-color: #17b9ac;
        position: relative;
        text-align: center;
        width: 100%;
        bottom: 0;
        margin-top: 10px;
        padding-top: 10px;
        display: block;
        flex-direction: column;
        align-items: center;
    }

    .powered-by {
        font-size: 12px;
        font-family: Montserrat;
        margin-bottom: 0px;
    }
    .footer img {
        width: 32%;
        display: block;
        margin: 2px auto;
    }
    .main-img {
        width: 90%;
        padding-top: 5%;
    }
}
