.logo {
    width: 100px;
}

.image {
    width: 360px;
    height: 280px;
}

.box {
    padding: 40px;
    background: #fff;
    text-align: center;
    transition: 0.25s;
    margin-top: 100px;
}

.box input[type="email"],
.box input[type="password"] {
    border: 0;
    background: none;
    display: block;
    margin: 20px auto;
    text-align: center;
    border: 2px solid #bc88ae;
    padding: 10px 10px;
    width: 300px;
    outline: none;
    /* color: white; */
    border-radius: 24px;
    transition: 0.25s;
}

.box h1 {
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
}

.box input[type="email"]:focus,
.box input[type="password"]:focus {
    width: 300px;
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 10px 15px;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(to bottom, #bc88ae, #f6c29c) border-box;
    color: #bc88ae;
    outline: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 8px rgba(188, 136, 174, 0.3);
}

.box button[type="submit"] {
    display: block;
    margin: 20px auto;
    text-align: center;
    padding: 14px 60px;
    border: 2px solid transparent;
    border-radius: 24px;
    background: 
        linear-gradient(white, white) padding-box, 
        linear-gradient(to right, #bc88ae, #f6c29c) border-box;
    color: #bc88ae;
    font-weight: bold;
    transition: 0.25s;
    cursor: pointer;
    outline: none;
}

.box button[type="submit"]:hover {
    background: linear-gradient(to bottom, #bc88ae, #f6c29c);
    color: #fff;
}

.forgot {
    text-decoration: underline;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    color: #fff;
    background-color: #1A237E;
  }

@media screen and (max-width: 991px) {
    .logo {
        margin-left: 0px;
    }

    .image {
        width: 300px;
        height: 220px;
    }
}

.guide-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.guide-link:hover {
    color: #bc88ae;
}