.rightofnav .createblog-container {
    width: 80%;
    margin: 5% auto;
    padding: 2%;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 21.9px -4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.rightofnav .createblog-title {
    font-family: "Oswald", sans-serif;
    font-size: 200%;
    font-weight: 600;
    color: rgba(255, 193, 26, 1);
    margin-bottom: 2%;
}

.rightofnav .createblog-field {
    margin-bottom: 2%;
}

.rightofnav .createblog-label {
    font-family: "Oswald", sans-serif;
    font-size: 105%;
    font-weight: 500;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 0.5%;
}

.rightofnav .createblog-input,
.rightofnav .createblog-textarea {
    width: 100%;
    padding: 1%;
    font-family: "Carlito", sans-serif;
    font-size: 105%;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(185, 185, 185, 1);
    border-radius: 5px;
    box-sizing: border-box;
}

.rightofnav .createblog-input:focus,
.rightofnav .createblog-textarea:focus {
    outline: none;
    border-color: rgba(255, 193, 26, 1);
}

.rightofnav .createblog-button {
    font-family: "Oswald", sans-serif;
    font-size: 105%;
    font-weight: 500;
    color: rgba(255, 255, 255, 1) !important;
    background-color: rgba(255, 193, 26, 1) !important;
    padding: 0.5% 2%;
    border-radius: 5vh;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.rightofnav .createblog-button:hover {
    background-color: rgba(0, 0, 0, 1);
}

.rightofnav .createblog-button.is-danger {
    background-color: rgba(255, 0, 0, 1);
}

.rightofnav .createblog-button.is-danger:hover {
    background-color: rgba(139, 0, 0, 1);
}