﻿/* Set padding to keep content from hitting the edges */
.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}
/* hexagons.css */
.container {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-form {
    text-align: center;
}

    .login-form h1 {
        font-size: 24px;
        margin-bottom: 20px;
        color: #333;
    }

.input-container {
    position: relative;
    margin-bottom: 15px;
}

    .input-container i {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #777;
    }

    .input-container input {
        width: 100%;
        padding: 10px 30px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        color: #555;
    }

.btn {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

    .btn:hover {
        background-color: #0056b3;
    }

.forgot-password {
    margin-top: 10px;
}

    .forgot-password a {
        color: #007bff;
        text-decoration: none;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }
