* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

.pplogo {
    text-align: center; 
    margin-bottom: 10px; 
    margin-left: 50px;
}

.logo {
    width: 100px;
    height: auto;
    background: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 50px;
}

body {
    background: rgb(72, 140, 151);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.box {
    width: 420px;
    background: #B6DCFE;
    color: #000000;
    border-radius: 10px;
    padding: 30px 40px;
    background-size: cover;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
    margin-top: 10px;
}

.box h1 {
    font-size: 36px;
    text-align: center;
}

.box .inputBox {
    width: 100%;
    height: 50px;
    background: #214d50;
    margin: 30px 0;
}

.inputbox input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid #252121;
    border-radius: 40px;
    color: #000000;
    padding: 20px 45px 20px 20px;
}

.inputBox input::placeholder {
    color: #000000;
}

.inputBox i {
    position: absolute;
    right: 20px;
    top: 50;
    transform: translateY(-50%);
    font-size: 20px
}

.wrapper .forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
    margin: -15px 0 15px;
}

.forgot label input {
    accent-color: #000000;
    margin-right: 3px;
}

.forgot a {
    color: #000000;
    text-decoration: none;
}

.forgot a:hover {
    text-decoration: underline;
}

.password {
    margin-left: 60px;
    padding-bottom: 15px;
}

.box .buton {
    width: 100%;
    padding: 12px 20px;
    height: auto;
    background: #ffffff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px #37a6ad;
    cursor: pointer;
    font-size: 16px;
    color: #000000;
    font-weight: 700;
    margin-top: 40px;
    text-decoration: none;
}

.buton a {
    width: 100%;
    padding: 20px;
}

@media (max-width: 480px) {
    .box {
        width: 95%;
        padding: 15px;
    }
    
    .logo {
        width: 70px;
    }
    
    .box h1 {
        font-size: 24px;
    }
    
    .inputbox input {
        padding: 12px 35px 12px 12px;
        font-size: 14px;
    }
    
    .forgot {
        font-size: 13px;
    }
    
    .box .buton {
        height: 35px;
        font-size: 13px;
    }
}