/*
Theme Name: Betheme Child
Description: Child theme for Betheme
Author: Your Name
Template: betheme
Version: 1.0
*/


/* ===============================
  Request Guest Form Styling Start
================================= */
form.wpcf7-form.init {
    text-align: center;
}
h2.request-guest-form-title {
    font-weight: 600;
}
.request-guest-form {
    max-width: 600px;
    margin: 25px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.request-guest-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
    font-size: 15px;
    text-align: left;
}

.request-guest-form input,
.request-guest-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.request-guest-form input:focus,
.request-guest-form textarea:focus {
    border-color: #e30613;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(227, 6, 19, 0.1);
}

.request-guest-form textarea {
    min-height: 140px;
    resize: vertical;
}

.request-guest-form input[type="submit"] {
    width: 100%;
    background: #e30613;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.request-guest-form input[type="submit"]:hover {
    background: #c1000f;
}
.custom-login-main-wrp {
    display: flex;
    gap: 30px;
    padding-top: 50px;
}


.page-id-25330 .woocommerce-MyAccount-navigation {
    float: left;
    width: 30%;
}
.woocommerce-MyAccount-content {
    max-width: 60%;
    width: 100%;
    float: right;
}

.custom-login-main-wrp > div {
    flex: 0 0 calc(50% - 15px);
}

@media (max-width: 768px) {
    .custom-login-main-wrp {
        flex-direction: column;
    }

    .custom-login-main-wrp > div {
        width: 100%;
    }
}
/* ===============================
  Request Guest Form Styling End
================================= */

/* Styling for the div container around the buttons */
.login-logout-btn {
    display: inline-block;
    margin-left: 10px; /* Space between the buttons */
}

/* Styling for the login/logout buttons */
.btn-login-logout {
    background-color: red;
    color: white !important;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 0;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-login-logout a{
    color: white !important;
}
