* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(to right, #000000, #00398a) center;
    background-size: cover;
}

.form-box {
    width: 100vw;
    height: 100vh;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.inputbox {
    position: relative;
    margin: 30px 0;
    width: 100%;
    border-bottom: 2px solid #fff;
}

.inputbox-2 {
    position: relative;
    margin-left: 14%;
    margin-bottom: 20px;
    width: 70%;
    border-bottom: 2px solid #fff;
}

.inputbox label, .inputbox-2 label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1em;
    pointer-events: none;
    transition: 0.5s;
}

input:focus ~ label {
    top: -5px;
}

input:valid ~ label {
    top: -5px;
}

.inputbox input, .inputbox-2 input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding: 0 35px 0 5px;
    color: #fff;
}

.inputbox i, .inputbox-2 i {
    position: absolute;
    right: 8px;
    color: #fff;
    font-size: 1.2em;
    top: 20px;
}

button {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
}

.btn {
    position: relative;
    display: inline-block;
    border: none;
    border-radius: 50px;
    background: none;
}

.btn a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    color: #fff;
    z-index: 1;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    backdrop-filter: blur(15px)
}

.btn:hover a {
    letter-spacing: 3px;
}

.btn a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, .15), transparent);
    transform: skewX(40deg) translateX(0);
    transition: all .5s ease-out;
}

.btn:hover a::before {
    transform: skewX(40deg) translateX(200%);
}

.btn::before,
.btn::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 0px;
    border-radius: 10px;
    transition: all .4s ease-in-out;
    transition-delay: 0s;
}

.btn::before {
    bottom: -5px;
}

.btn::after {
    top: -5px;
}

.btn:hover::before,
.btn:hover::after {
    height: 50%;
    width: 80%;
    border-radius: 30px;
    transition-delay: .3s;
}

.btn:hover::before {
    bottom: 0;
}

.btn:hover::after {
    top: 0;
}

.forgot-password-link {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

.install-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.install-modal-content {
    background: #00245e;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.install-modal-content h2 {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #ffffff;
}

.install-modal-content p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #ffffff;
}

.install-logo {
    width: 150px;
    margin-bottom: 20px;
}

.install-btn {
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

