/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.pg-new-account-section{
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    width: 98%;
    margin: 30px auto;
}

.pmagic-form .pg-new-account-section h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    margin-top: 10px;
    font-family: inherit;
}

.pmagic-form .pg-new-account-section .pm-field-label label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
    color: #555;
}



/* Input field style */
.pmagic-form .pg-new-account-section .pm-field-input input[type="email"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
    color: #333;
}


.pmagic-form .pg-new-account-section input[type="submit"] {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pmagic-form .pg-new-account-section input[type="submit"]:hover {
    background-color: #005177;
}


.pg-unlink-account-section {
    display: flex;
    padding: 10px;
    border-top: 1px solid #dbdbdb;
    background-color: #ffffff;
    width: 98%;
    margin: 30px auto;
    flex-direction: column;
}

.pg-linked-account {
    width: 60%;
}

.pg-linked-account-wrap input[type="submit"] {
     background-color: #e31010;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}


.pg-linked-account-wrap input[type="submit"]:hover {
    background-color: #790404;
}

.pg-unlink-account-section h5{    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    margin-top: 10px;
    font-family: inherit;
        margin-bottom: 20px;
    display: inline-block;
}

.pg-linked-account-wrap {
    display: flex;
    margin: 20px 0px;
    border-bottom: 1px solid #efefef;
    padding-bottom: 20px;
}

.pg-linked-account-wrap:last-child{
        border-bottom: 0px solid #efefef;
}